feat: implement browser extension for media publishing and add backend support for media management
This commit is contained in:
@@ -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",
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user