auto-post-marketplace-facebook/auto-post-facebook-extensio.../manifest.json

28 lines
658 B
JSON

{
"manifest_version": 3,
"name": "Auto post facebook extensions",
"version": "1.0",
"action": {
"default_popup": "index.html"
},
"background": {
"service_worker": "background/background.js",
"type": "module"
},
"host_permissions": ["https://www.facebook.com/*"],
"content_scripts": [
{
"matches": ["https://www.facebook.com/*"],
"js": ["content/content.js"],
"type": "module"
}
],
"web_accessible_resources": [
{
"resources": ["content/inject-ui.js", "assets/*"],
"matches": ["https://www.facebook.com/*"]
}
],
"permissions": ["storage", "tabs", "activeTab", "scripting"]
}