29 lines
621 B
JSON
29 lines
621 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": ["http://172.16.7.48/*"],
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content/content.js"],
|
|
"type": "module"
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": ["content/inject-ui.js", "assets/*"],
|
|
"matches": ["<all_urls>"]
|
|
}
|
|
],
|
|
|
|
"permissions": ["storage", "tabs", "activeTab", "scripting"]
|
|
}
|