22 lines
435 B
JSON
22 lines
435 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"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content/content.js"],
|
|
"type": "module"
|
|
}
|
|
],
|
|
|
|
"permissions": ["storage", "tabs", "activeTab", "scripting"]
|
|
}
|