forked from gorhill/httpswitchboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
83 lines (83 loc) · 2.2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"manifest_version": 2,
"name": "__MSG_extName__",
"short_name": "HTTPSB",
"version": "0.9.5.5",
"description": "__MSG_extShortDesc__",
"icons": {
"16": "icon_16.png",
"128": "icon_128.png"
},
"browser_action": {
"default_icon": {
"19": "img/browsericons/icon19.png"
},
"default_title": "__MSG_extName__",
"default_popup": "popup.html"
},
"author": "Raymond Hill",
"background": {
"page": "background.html"
},
"commands": {
"open-settings": {
"description": "Open Settings",
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "Command+Shift+S"
}
},
"open-statistics": {
"description": "Open Statistics",
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "Command+Shift+A"
}
},
"open-scoped-rules": {
"description": "Open Scoped rules",
"suggested_key": {
"default": "Ctrl+Shift+3",
"mac": "Command+Shift+R"
}
},
"open-ubiquitous-rules": {
"description": "Open Ubiquitous rules",
"suggested_key": {
"default": "Ctrl+Shift+4",
"mac": "Command+Shift+U"
}
}
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/contentscript.js"],
"run_at": "document_start",
"all_frames": true
}
],
"default_locale": "en",
"homepage_url": "https://github.com/gorhill/httpswitchboard/wiki",
"minimum_chrome_version": "22.0",
"options_page": "dashboard.html",
"permissions": [
"browsingData",
"contentSettings",
"contextMenus",
"cookies",
"downloads",
"storage",
"tabs",
"unlimitedStorage",
"webNavigation",
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
"css/fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf",
"css/noop.css"
]
}