-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
61 lines (60 loc) · 1.54 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"description": "__MSG_appDescription__",
"version": "0.12.4",
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDhrBRQX+aEUhcTMezkOe9SgPRKsJHafG9nBCSHpTltZzPOd6RPPzNHA6ZPW9qujNQmlgRCM/6pzzrhAjP/hEjdE0xyOxZkdnzLJ4y096O4N+HUKwfeQ85XxBYJUfn7skxGW5g4IOCTCsKS6Gs8u2EZarHq4c1mRgs0xSOsoBnEaQIDAQAB",
"manifest_version": 2,
"default_locale": "en",
"browser_action": {
"default_popup": "pages/popup.html",
"default_icon": {
"19": "images/icon/19.png",
"38": "images/icon/38.png"
}
},
"icons": {
"16": "images/icon/16.png",
"48": "images/icon/48.png",
"128": "images/icon/128.png"
},
"background": {
"persistent": true,
"scripts": [
"bundles/events.js"
]
},
"content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self'",
"web_accessible_resources": [
"images/*.*",
"styles/*.*",
"fonts/*.*",
"bundles/*.*"
],
"permissions": [
"webRequestBlocking",
"webRequest",
"tabs",
"contextMenus",
"storage",
"topSites",
"history",
"webNavigation",
"alarms",
"<all_urls>"
],
"commands": {
"toggleMainView": {
"suggested_key": {
"default": "Alt+Shift+Z"
},
"description": "Toggle Tabman docked window (suggested Alt+Shift+Z)"
},
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Z"
}
}
}
}