-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
60 lines (60 loc) · 1.49 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
59
60
{
"name": "LAN port scan forbidder",
"description": "Forbid non-LAN web to access LAN",
"manifest_version": 2,
"version": "0.6.2",
"homepage_url": "https://garywill.github.io",
"developer": {
"name": "Garywill",
"url": "https://github.com/garywill/LAN-port-scan-forbidder"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"*://*/*",
"ws://*/*",
"wss://*/*",
"ftp://*/*",
"contextMenus",
"storage",
"tabs"
],
"optional_permissions": [
"notifications"
],
"icons": {
"128": "icon.png"
},
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "icon_gray.png",
"default_title": "LAN port scan forbidder"
},
"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_window" : {
"description": "Toggle for one window"
},
"toggle_global" : {
"description": "Toggle globally enable/disable"
}
},
"options_ui": {
"page": "options.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{74accabf-53dc-476f-b5fd-0227884c230a}"
}
}
}