forked from gorhill/httpswitchboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
69 lines (69 loc) · 1.79 KB
/
manifest.json
File metadata and controls
69 lines (69 loc) · 1.79 KB
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
{
"manifest_version": 2,
"name": "__MSG_extName__",
"version": "0.7.9.3",
"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"
},
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/contentscript.js"],
"run_at": "document_end",
"all_frames": true
}],
"homepage_url": "https://github.com/gorhill/httpswitchboard/wiki",
"minimum_chrome_version": "22.0",
"default_locale": "en",
"options_page": "settings.html",
"permissions": [
"browsingData",
"contentSettings",
"contextMenus",
"cookies",
"downloads",
"storage",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
"css/fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf",
"css/noop.css"
],
"commands": {
"open-httpsb-stats": {
"suggested_key": {
"default": "Alt+S"
},
"description": "Open HTTP Switchboard Stats page"
},
"open-httpsb-rules": {
"suggested_key": {
"default": "Alt+R"
},
"description": "Open HTTP Switchboard Rule Manager"
},
"open-httpsb-settings": {
"suggested_key": {
"default": "Ctrl+Shift+S"
},
"description": "Open HTTP Switchboard Settings"
}
}
}