forked from chiibis/actiplans_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
33 lines (31 loc) · 873 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
{
"manifest_version": 2,
"name": "ActiPlans extension",
"description": "Summary view for actiPlans",
"version": "0.3",
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["*://online.actiplans.com/*"],
"css": ["css/style.css"],
"js": ["third_party/jquery-2.1.0.min.js"],
"run_at" :"document_start"
},
{
"matches": ["*://online.actiplans.com/adtt/user/my_schedule.do/*"],
"js": ["content/table_view.js"],
"run_at" : "document_start"
}
],
"icons": {
"128": "icon_128.png",
"16": "images/icon_48.png"
},
"permissions": ["tabs","storage"],
"browser_action": {
"default_icon": "images/icon_19.png",
"default_title": "Go to ActiPlans"
}
}