-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
59 lines (59 loc) · 1.29 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
{
"manifest_version": 3,
"name": "Enhanced Plex",
"description": "Adds several features to the Plex/Web client for Plex",
"version": "3.3.3",
"options_page": "resources/extras/options.html",
"content_scripts": [
{
"matches": [
"*://app.plex.tv/desktop*",
"http://127.0.0.1:32400/web*",
"http://localhost:32400/web*"
],
"run_at": "document_idle",
"css": [
"css/enhancedplex.css"
],
"js": [
"js/utils.js",
"js/plugins.js",
"apis/trakt_api.js",
"apis/tmdb_api.js",
"apis/sonarr_api.js",
"apis/radarr_api.js",
"apis/google_api.js",
"plugins/imdb.js",
"plugins/missing_episodes.js",
"plugins/stats.js",
"plugins/tmdb.js",
"plugins/trakt.js",
"plugins/tvdb.js",
"plugins/sonarr.js",
"plugins/radarr.js",
"js/main.js"
]
}
],
"background": {
"service_worker": "js/service_worker.js"
},
"permissions": [
"storage"
],
"icons": {
"16": "resources/icon16.png",
"48": "resources/icon48.png",
"128": "resources/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"resources/*"
],
"matches": [
"<all_urls>"
]
}
]
}