-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmanifest.json
46 lines (46 loc) · 1.1 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
{
"name": "Avro Keyboard",
"version": "1.5",
"manifest_version": 2,
"description": "Official Avro Keyboard for Google Chrome",
"background": {
"page": "background.html"
},
"page_action" : {
"default_icon" : "images/icon-16-dim.png",
"default_title" : "Avro Keyboard"
},
"permissions": [
"tabs",
"http://*/*",
"https://*/*"
],
"icons" : {
"16" : "images/icon-16.png",
"48" : "images/icon-38.png",
"128" : "images/icon-128.png"
},
"content_scripts" : [
{
"matches": ["<all_urls>"],
"js" : [
"js/jquery-1.7.1.min.js",
"js/avro-1.1.1-beta.min.js",
"js/jquery.noty.js",
"js/content.js"
],
"css" : [
"css/jquery.noty.css",
"css/noty_theme_default.css"
],
"run_at" : "document_end",
"all_frames" : true
}
],
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"chrome_style": true,
"open_in_tab": false
}
}