-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (44 loc) · 1012 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
{
"manifest_version": 2,
"name": "IMDb Enricher",
"description": "Adds the IMDb rating of each title to the corresponding row in the filmography section of each person.",
"version": "0.4",
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"http://imdb.com/*",
"https://imdb.com/*",
"https://m.imdb.com/*",
"https://www.omdbapi.com/*",
"http://unogs.com/*",
"https://unogs.com/*"
],
"icons": {
"32": "icons/icon_32.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png",
"512": "icons/icon_512.png"
},
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "57.0"
}
},
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
]
},
"content_scripts": [{
"js": [
"browser-polyfill.js",
"jquery-2.1.4.min.js",
"filmography.js"
],
"run_at": "document_end",
"matches": ["https://www.imdb.com/name/*"]
}]
}