-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
55 lines (54 loc) · 1.37 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "0.1.9.11",
"name": "Alya Start Page",
"description": "__MSG_extDesc__",
"default_locale": "en",
"offline_enabled": true,
"chrome_url_overrides": {
"newtab": "/start/index.html"
},
"background": {
"persistent": true,
"scripts": [
"/start/chrome/settings.js",
"/start/common/prefs-sys.js",
"/start/chrome/utils.js",
"/start/common/default-whitelist.js",
"/start/chrome/background.js"
]
},
"content_scripts": [
{
"all_frames": false,
"run_at": "document_end",
"js": [ "/start/search/content-homepage.js" ],
"matches": [ "https://*.google.com/*" ]
}
],
"browser_action": {
"default_icon": {
"128": "start/skin/icons/128.png",
"16": "start/skin/icons/16.png",
"48": "start/skin/icons/48.png"
}
},
"icons": {
"128": "start/skin/icons/128.png",
"16": "start/skin/icons/16.png",
"48": "start/skin/icons/48.png"
},
"web_accessible_resources": [ "start/skin/*" ],
"permissions": [
"https://suggestqueries.google.com/*",
"unlimitedStorage",
"topSites",
"management"
],
"manifest_version": 2,
"browser_specific_settings": {
"gecko": {
"id": "{c780473f-234b-4654-8b06-f37e0e2fb600}"
}
}
}