forked from nakayuki805/AbemaTVChromeExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest-edge.json
39 lines (39 loc) · 1015 Bytes
/
manifest-edge.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
{
"manifest_version": 2,
"name": "abematv ext",
"version": "0.12.4",
"description": "abematvを快適にする非公式の拡張機能(番組通知自動再生、コメントNGワード、映像上コメント流し、映像サイズ固定など様々な機能を柔軟に設定できます)",
"author": "AbemaTVChromeExtension on github",
"icons": {
"128": "abemaexticon.png"
},
"permissions": [
"storage",
"alarms",
"notifications",
"tabs",
"contextMenus",
"webNavigation"
],
"content_scripts": [
{
"matches": ["https://abema.tv/*"],
"js": ["jquery-2.2.3.min.js", "settings.js", "onairpage.js"]
}
],
"web_accessible_resources": [
"onairpage.js",
"onairpage.css",
"jquery-2.2.3.min.js",
"option.html",
"prognotifies.html",
"icon/gear.svg",
"icon/mastodon-icon.svg",
"icon/mastodon-icon-blue.svg"
],
"options_page": "option.html",
"background": {
"scripts": ["jquery-2.2.3.min.js", "event.js"],
"persistent": false
}
}