26 lines
617 B
JSON
26 lines
617 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Reject Cookies",
|
|
"version": "1.0",
|
|
"description": "Automatically reject all cookie popups.",
|
|
"permissions": ["activeTab", "storage", "scripting"],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "images/icon16.png",
|
|
"48": "images/icon48.png",
|
|
"128": "images/icon128.png"
|
|
}
|
|
}
|
|
}
|
|
|