-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
46 lines (46 loc) · 1.24 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "PopUpOFF - Popup and overlay blocker",
"short_name": "PopUpOFF",
"version": "2.1.3",
"description": "Removes and prevents popups, overlays and cookie notifications, other tools do not. Enjoy the original look of the internet.",
"permissions": ["activeTab", "storage", "tabs", "contextMenus"],
"optional_permissions": ["downloads"],
"host_permissions": ["http://*/", "https://*/"],
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"content_scripts": [
{
"js": ["content/helpers.js", "content/modes.js", "content/setup.js"],
"css": ["css/content.css"],
"matches": ["<all_urls>"],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background/background.js",
"type": "module"
},
"action": {
"default_popup": "popup/popup.html",
"default_title": "PopUpOFF - Click to open",
"default_icon": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo48.png",
"128": "images/logo128.png"
}
},
"icons": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo48.png",
"128": "images/logo128.png"
},
"web_accessible_resources": [{
"matches": ["<all_urls>"],
"resources": ["images/stop_ads.png"]
}],
"manifest_version": 3
}