-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
manifest.firefox.json
50 lines (50 loc) · 1.09 KB
/
manifest.firefox.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
{
"manifest_version": 2,
"name": "PiHole Browser Extension",
"version": "3.0.2",
"author": "Pascal Glaser",
"description": "__MSG_manifest_description__",
"default_locale": "en",
"icons": {
"48": "icon/icon-48.png",
"96": "icon/icon-96.png",
"128": "icon/icon-128.png"
},
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icon/icon-16.png",
"32": "icon/icon-32.png"
},
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"browser_style": true,
"open_in_tab": true
},
"background": {
"persistent": true,
"page": "background.html"
},
"permissions": [
"storage",
"<all_urls>",
"activeTab",
"contextMenus"
],
"commands": {
"hotkey-toggle-pihole": {
"description": "__MSG_context_menu_toggle_pi_holes__"
},
"hotkey-blacklist-current-domain": {
"description": "__MSG_context_menu_blacklist_current_domain__"
},
"hotkey-whitelist-current-domain": {
"description": "__MSG_context_menu_whitelist_current_domain__"
},
"hotkey-open-settings": {
"description": "__MSG_context_menu_open_settings__"
}
}
}