forked from gorhill/httpswitchboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
59 lines (59 loc) · 1.5 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
{
"manifest_version": 2,
"name": "__MSG_extName__",
"short_name": "HTTPSB",
"version": "0.9.1.2",
"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
},
{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/contentscript-uaspoof.js"],
"run_at": "document_start",
"all_frames": true
}
],
"homepage_url": "https://github.com/gorhill/httpswitchboard/wiki",
"minimum_chrome_version": "22.0",
"default_locale": "en",
"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"
]
}