-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 1.04 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
{
"name": "30nama Assistant",
"version": "0.3.4",
"manifest_version": 2,
"web_accessible_resources": ["/src/img/float-icon.png"],
"content_scripts": [
{
"matches": ["*://30nama.com/*"],
"js": ["/src/js/30nama.js"]
},
{
"matches": [
"*://subscene.com/",
"*://subscene.com/subtitles/*"
],
"js": ["/src/js/subscene.js"]
},
{
"matches": ["*://30nama.com/play/*"],
"js": ["/src/js/30nama_player.js"],
"css": ["/src/css/30nama.css"]
},
{
"matches": [
"*://www.imdb.com/title/*",
"*://www.imdb.com/chart/*",
"*://www.imdb.com/list/*",
"*://www.imdb.com/search/title/*"
],
"js": ["/src/js/imdb.js"],
"css": ["/src/css/imdb.css"]
}
],
"permissions": ["storage"],
"browser_action": {
"default_icon": "/src/img/icon.png",
"default_popup": "/src/popup.html"
},
"background": {
"scripts": ["/src/js/background.js"],
"persistent": false
}
}