1
|
// Copyright (C) 2021 Wojtek Kosior
|
2
|
// Redistribution terms are gathered in the `copyright' file.
|
3
|
{
|
4
|
"manifest_version": 2,
|
5
|
"name": "My extension",
|
6
|
"short_name": "Myext",
|
7
|
"version": "0.0.1",_CHROMIUM_KEY_
|
8
|
"author": "various",
|
9
|
"description": "Kill the web&js",_GECKO_APPLICATIONS_
|
10
|
"icons":{
|
11
|
"64": "icons/myext.png"
|
12
|
},
|
13
|
"permissions": [
|
14
|
"contextMenus",
|
15
|
"webRequest",
|
16
|
"webRequestBlocking",
|
17
|
"activeTab",
|
18
|
"notifications",
|
19
|
"sessions",
|
20
|
"storage",
|
21
|
"tabs",
|
22
|
"<all_urls>"
|
23
|
],
|
24
|
"browser_action": {
|
25
|
"browser_style": true,
|
26
|
"default_icon": {
|
27
|
"64": "icons/myext.png"
|
28
|
},
|
29
|
"default_title": "Myext",
|
30
|
"default_popup": "html/display-panel.html"
|
31
|
},
|
32
|
"options_ui": {
|
33
|
"page": "html/options.html",
|
34
|
"open_in_tab": true
|
35
|
},
|
36
|
"web_accessible_resources": [
|
37
|
],
|
38
|
"background": {
|
39
|
"persistent": true,
|
40
|
"scripts": [_BGSCRIPTS_]
|
41
|
},
|
42
|
"content_scripts": [
|
43
|
{
|
44
|
"run_at": "document_start",
|
45
|
"matches": ["<all_urls>"],
|
46
|
"match_about_blank": true,
|
47
|
"all_frames": true,
|
48
|
"js": [_CONTENTSCRIPTS_]
|
49
|
}
|
50
|
]
|
51
|
}
|