forked from nt1m/vivaldi-fox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (52 loc) · 1.15 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
47
48
49
50
51
52
{
"manifest_version": 2,
"name": "VivaldiFox",
"author": "Tim Nguyen",
"version": "3.5",
"icons": {
"16": "icon.svg",
"32": "icon.svg",
"48": "icon.svg",
"96": "icon.svg"
},
"description": "An add-on that allows colouring Firefox in a Vivaldi style fashion.",
"permissions": ["theme", "tabs", "storage", "alarms", "browserSettings"],
"optional_permissions": ["<all_urls>"],
"background": {
"scripts": [
"shared/settings.js",
"background/constants.js",
"background/color.js",
"background/addon-state.js",
"background/favicon-utils.js",
"background/color-utils.js",
"background/theme.js",
"background/background.js"
]
},
"commands": {
"_execute_browser_action": {}
},
"content_scripts": [{
"matches": [
"<all_urls>"
],
"js": [
"data/contentscript.js"
]
}],
"options_ui": {
"page": "options/options.html",
"browser_style": false,
"open_in_tab": true
},
"browser_action": {
"default_title": "VivaldiFox",
"default_icon": "icon.svg"
},
"applications": {
"gecko": {
"strict_min_version": "61.0a1"
}
}
}