-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
40 lines (40 loc) · 966 Bytes
/
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
{
"name": "弹幕读取器",
"version": "1.3",
"manifest_version": 3,
"description": "弹幕读取器",
// "permissions": [
// "http://*/*"
// ],
// "optional_permissions": [
// "unlimitedStorage"
// ],
"host_permissions": [
"*://*/*"
],
"icons": {
"16": "images/get_started16.png",
"32": "images/get_started32.png",
"45": "images/get_started48.png",
"128": "images/get_started128.png"
},
// "browser_action": {
// "default_icon": "images/get_started16.png",
// "default_popup": "popup.html"
// },
"content_scripts": [
{
"matches": [
"*://live.bilibili.com/*",
"*://fm.missevan.com/*"
],
"js": [
"jquery-3.3.1.js",
"background.js"
],
"css": [
"popup.css"
]
}
]
}