-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
47 lines (41 loc) · 982 Bytes
/
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
{
"name": "kasahorow",
"short_name": "kasahorow",
"description": "Learn something true. Every day.",
"version": "2017.1.1",
"manifest_version": 2,
"omnibox": { "keyword" : "kw" },
"options_page": "options.html",
"browser_action": {
"default_title": "kasahorow",
"default_icon": "icon16.png",
"default_popup": "popup.html"
},
"permissions": [
"contextMenus",
"notifications",
"*://*.kasahorow.org/*"
],
"background": {
"scripts": ["common.js", "pictionary.js", "omnisearch.js","vendor/jquery/jquery.js", "inspiration.js", "keyboard.js"]
},
"content_scripts": [
{
"matches": ["*://*.kasahorow.org/*"],
"css": [],
"js": [ "pictionaryContent.js"],
"run_at":"document_end"
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"chrome_url_overrides" : {
"newtab": "NewTab.html"
},
"web_accessible_resources": [
"icon48.png"
]
}