-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
45 lines (40 loc) · 878 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
41
42
43
44
45
{
"manifest_version": 2,
"name": "Netfix (Netflix Ratings)",
"short_name": "Netfix",
"description": "Adds TMDB ratings to Netflix interface.",
"version": "0.5.3",
"icons": {
"16": "res/icon16.png",
"48": "res/icon48.png",
"128": "res/icon128.png"
},
"background": {
"scripts": [
"lib/hot-reload.js",
"js/bg.js"
]
},
"content_scripts": [
{
"matches": ["*://www.netflix.com/*"],
"css": ["css/netfix.css"],
"js": [
"lib/underscore-min.js",
"lib/rate_limit.js",
"lib/jquery-3.2.1.min.js",
"lib/jquery.visible.min.js",
"lib/jquery-observe.js",
"js/utils.js",
"js/cardfactory.js",
"js/netflixapi.js",
"js/tmdbapi.js",
"js/fixer.js"
]
}
],
"permissions": [
"*://api.themoviedb.org/*",
"management"
]
}