-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest-chrome.json
49 lines (49 loc) · 1.21 KB
/
manifest-chrome.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
{
"name": "Auto Referer",
"description": "Control referer to protect privacy and not break web",
"manifest_version": 2,
"version": "0.8.50",
"homepage_url": "https://github.com/garywill/autoReferer",
"author": {
"name": "Garywill",
"url": "https://garywill.github.io"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"*://*/*",
"ws://*/*",
"wss://*/*",
"<all_urls>",
"contextMenus",
"storage"
],
"icons": {
"128": "icon.png"
},
"background": {
"page": "background.html",
"persistent": true
},
"browser_action": {
"default_icon": "icon_gray.png",
"default_title": "Auto Referer"
},
"commands": {
"_execute_browser_action": {
"description": "Click toolbar button"
},
"toggle_t" : {
"description": "Toggle for one tab"
},
"toggle_h" : {
"description": "Toggle for one tab and new tabs opened by it"
},
"toggle_global" : {
"description": "Toggle globally enable/disable"
}
},
"options_ui": {
"page": "options.html"
}
}