forked from torifat/avro4chrome
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
37 lines (37 loc) · 921 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
{
"name": "Avro Keyboard",
"version": "1.4",
"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.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
}
]
}