-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (40 loc) · 1.05 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
{
"manifest_version": 2,
"name": "TAS-CAL",
"version": "2.0",
"description": "I want Tasukaru.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": ["https://www.youtube.com/*"],
"css": ["style_youtube.css"],
"js": ["jquery-3.4.1.min.js", "content_script_youtube.js"]
},
{
"matches": ["https://www.pixiv.net/*"],
"css": ["style_pixiv.css"],
"js": ["jquery-3.4.1.min.js", "content_script_pixiv.js"]
},
{
"matches": ["https://www.nicovideo.jp/*"],
"css": ["style_niconico.css"]
}
],
"browser_action": {
"default_popup": "popup.html"
},
"background": {
"scripts": ["jquery-3.4.1.min.js", "background_youtube.js"],
"persistent": false
},
"permissions": [
"http://ext.nicovideo.jp/", "http://seiga.nicovideo.jp/"
],
"web_accessible_resources": [
"/*"
]
}