feat: implement browser extension for media publishing and add backend support for media management

This commit is contained in:
2026-04-03 00:39:15 +08:00
parent 8958cb44c0
commit 32d6a462cd
60 changed files with 8268 additions and 26 deletions
+24
View File
@@ -0,0 +1,24 @@
import { defineConfig } from "wxt";
export default defineConfig({
modules: ["@wxt-dev/module-vue"],
manifest: {
name: "GEO Publisher",
description: "Bind media accounts, execute local publish flows, and keep background detection tasks running.",
permissions: ["storage", "tabs", "alarms", "cookies", "declarativeNetRequest"],
host_permissions: ["http://*/*", "https://*/*"],
declarative_net_request: {
rule_resources: [
{
id: "publisher-rules",
enabled: true,
path: "rules.json",
},
],
},
action: {
default_title: "GEO Publisher",
default_popup: "popup.html",
},
},
});