-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
40 lines (38 loc) · 945 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
{
"manifest_version": 2,
"name": "Bad-Movie-No-More (Redbox/Vidangel ratings)",
"author": "Sky Liu",
"description": "Attach imdb and rotten tomatoes ratings to the movies listed in Redbox/VidAngel",
"short_name": "Redbox/VidAngel Movie Ratings",
"icons": {
"128": "images/redbox.png"
},
"version": "1.2",
"page_action": {
"default_icon": "images/redbox.png",
"default_title": "Refresh all ratings!"
},
"background" : {
"scripts" : ["scripts/background.js"]
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"*://www.redbox.com/*",
"*://www.vidangel.com/*"
],
"js": ["scripts/jquery-1.11.2.min.js", "scripts/imagesloaded.pkgd.js", "scripts/redbox_rating.js"],
"css": ["styles/label.css"]
}
],
"permissions": [
"https://www.redbox.com/*",
"https://www.vidangel.com/*",
"storage",
"tabs"
],
"web_accessible_resources": [
"images/*"
]
}