-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
39 lines (39 loc) · 1.09 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
{
"content_scripts": [
{
"js": [
"libs/jquery-2.0.3.min.js",
"libs/bootstrap.min.js",
"js/ratings.js"
],
"matches": [
"http://*.netflix.com/*",
"https://*.netflix.com/*"
]
}
],
"description": "Add trailers, IMDB, Rotten Tomato, and MetaCritic ratings to the Netflix webpage.",
"icons": {
"128": "img/icon_128.png",
"48": "img/icon_48.png"
},
"manifest_version": 2,
"name": "Netflix Rate",
"permissions": [
"storage",
"http://www.omdbapi.com/*",
"http://*.netflix.com/*",
"https://*.netflix.com/*",
"http://netflix.burtonthird.com/*",
"http://api.themoviedb.org/*",
"https://byroredux-metacritic.p.mashape.com/*",
"http://api.rottentomatoes.com/*"
],
"short_name": "Netflix Rate",
"version": "1.3.47",
"web_accessible_resources": [
"css/ratings.css",
"img/imdbSprite.png",
"img/tomatoSprite.png"
]
}