forked from johnmave126/better-history
-
Notifications
You must be signed in to change notification settings - Fork 23
/
manifest.json
58 lines (58 loc) · 1.78 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
{
"background": {
"scripts": [
"bower_components/chrome-sync/chrome_sync.js",
"bower_components/underscore/underscore-min.js",
"scripts/namespace.js",
"scripts/config.js",
"scripts/chrome/page_context_menu.js",
"scripts/chrome/selection_context_menu.js",
"scripts/chrome/omnibox.js",
"scripts/chrome/browser_actions.js",
"scripts/chrome/i18n.js",
"scripts/initialize_background.js",
"scripts/initialize_statistic.js"
]
},
"browser_action": {
"default_icon": {
"19": "images/icons/icon19.png",
"38": "images/icons/icon38.png"
},
"default_title": "__MSG_manifest_browser_action_title__"
},
"chrome_url_overrides": {
"history": "index.html"
},
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://platform.twitter.com https://www.google.com https://apis.google.com; object-src 'self';",
"default_locale": "en",
"description": "__MSG_manifest_description__",
"icons": {
"128": "images/icons/icon128.png",
"16": "images/icons/icon16.png",
"48": "images/icons/icon48.png"
},
"manifest_version": 2,
"minimum_chrome_version": "29",
"name": "__MSG_manifest_name__ DEV",
"offline_enabled": true,
"omnibox": {
"keyword": "__MSG_history_title__"
},
"permissions": [
"chrome://favicon/",
"history",
"tabs",
"contextMenus",
"storage",
"unlimitedStorage",
"identity",
"sessions",
"downloads",
"idle",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"version": "3.9.11.4"
}