-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
58 lines (48 loc) · 1.06 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
53
54
55
56
57
58
{
"manifest_version": 2,
"name": "Toggle Referrer",
"version": "5.12.0",
"description": "__MSG_extensionDescription__",
"browser_specific_settings": {
"gecko": {
"id": "{8883111b-4bc8-4a99-b37f-5672f6cf9597}",
"strict_min_version": "60.0"
}
},
"icons": {
"24": "icons/togglereferrer.svg",
"32": "icons/togglereferrer.svg",
"50": "icons/togglereferrer.svg"
},
"background": {
"scripts": ["utils/iconupdater.js", "background.js", "spoofing.js"]
},
"browser_action": {
"browser_style": true,
"default_icon": "icons/togglereferrer.svg",
"theme_icons": [{
"dark": "icons/togglereferrer.svg",
"light": "icons/togglereferrer-light.svg",
"size": 19
}]
},
"options_ui": {
"page": "options.html",
"browser_style": true,
"open_in_tab": false
},
"commands": {
"_execute_browser_action": {
}
},
"permissions": [
"privacy",
"storage"
],
"optional_permissions": [
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"default_locale": "en"
}