-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmanifest.json
76 lines (76 loc) · 3.27 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "Overseerr Assistant",
"version": "1.7.1",
"description": "Browser extension for Overseerr that embeds buttons into IMDb and TMDB web pages to easily request movies and tv shows.",
"permissions": ["storage"],
"host_permissions": ["http://*/", "https://*/"],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/icon.png",
"32": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
}
},
"icons": {
"16": "images/icon.png",
"32": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
},
"content_scripts": [{
"matches": ["https://www.themoviedb.org/movie/*", "https://www.themoviedb.org/tv/*"],
"css": ["css/style.css"],
"js": ["js/lib/jquery-3.5.1.min.js", "js/storage.js", "js/overseerr-container.js", "js/content-scripts/tmdb.js"]
}, {
"matches": ["https://www.imdb.com/title/*"],
"css": ["css/style.css"],
"js": ["js/lib/jquery-3.5.1.min.js", "js/storage.js", "js/overseerr-container.js", "js/content-scripts/imdb.js"]
}, {
"matches": ["https://www.allocine.fr/film/*", "https://www.allocine.fr/series/*"],
"css": ["css/style.css"],
"js": ["js/lib/jquery-3.5.1.min.js", "js/storage.js", "js/overseerr-container.js", "js/content-scripts/allocine.js"]
}, {
"matches": ["https://www.senscritique.com/*"],
"css": ["css/style.css"],
"js": ["js/lib/jquery-3.5.1.min.js", "js/storage.js", "js/overseerr-container.js", "js/content-scripts/senscritique.js"]
},{
"matches": ["https://thetvdb.com/movies/*", "https://thetvdb.com/series/*"],
"css": ["css/style.css"],
"js": ["js/lib/jquery-3.5.1.min.js", "js/storage.js", "js/overseerr-container.js", "js/content-scripts/tvdb.js"]
},{
"matches": ["https://letterboxd.com/film/*"],
"css": ["css/style.css"],
"js": ["js/lib/jquery-3.5.1.min.js", "js/storage.js", "js/overseerr-container.js", "js/content-scripts/letterboxd.js"]
},{
"matches": ["https://www.rottentomatoes.com/m/*", "https://www.rottentomatoes.com/tv/*"],
"css": ["css/style.css"],
"js": ["js/lib/jquery-3.5.1.min.js", "js/storage.js", "js/overseerr-container.js", "js/content-scripts/rottentomatoes.js"]
},{
"matches": ["https://app.plex.tv/desktop/*"],
"css": ["css/style.css"],
"js": ["js/lib/jquery-3.5.1.min.js", "js/storage.js", "js/overseerr-container.js", "js/content-scripts/plex.js"]
},{
"matches": ["https://www.justwatch.com/*"],
"css": ["css/style.css"],
"js": ["js/lib/jquery-3.5.1.min.js", "js/storage.js", "js/overseerr-container.js", "js/content-scripts/justwatch.js"]
},{
"matches": ["https://trakt.tv/movies/*", "https://trakt.tv/shows/*"],
"css": ["css/style.css"],
"js": ["js/lib/jquery-3.5.1.min.js", "js/storage.js", "js/overseerr-container.js", "js/content-scripts/trakt.js"]
},{
"matches": ["https://www.taste.io/movies/*", "https://www.taste.io/tv/*"],
"css": ["css/style.css"],
"js": ["js/lib/jquery-3.5.1.min.js", "js/storage.js", "js/overseerr-container.js", "js/content-scripts/taste.js"]
}],
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [{
"resources": ["images/icon.png"],
"matches": ["<all_urls>"]
}],
"manifest_version": 3
}