-
Notifications
You must be signed in to change notification settings - Fork 46
/
manifest.json
64 lines (64 loc) · 1.71 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
60
61
62
63
64
{
"manifest_version": 3,
"name": "BiliScope - Bilibili插件,你的B站小助手",
"version": "0.6.2",
"description": "可以显示视频的AI内容总结,在B站的各类网页上显示用户的详细信息,包括关注数、粉丝数、投稿数、签名、投稿词云等等。还可以给UP主做备注和标签!",
"icons": {
"128": "img/logo.png"
},
"content_scripts": [
{
"js": [
"scripts/constants.js",
"scripts/globals.js",
"scripts/stopwords.js",
"scripts/wordcloud2.min.js",
"scripts/md5.js",
"scripts/util.js",
"scripts/biliapi.js",
"scripts/searchpage.js",
"scripts/note.js",
"scripts/videotag.js",
"scripts/ui.js",
"scripts/videoui.js",
"scripts/biliscope.js",
"scripts/load.js",
"scripts/rollbackfeedcard.js"
],
"css": [
"css/idcard.css",
"css/videocard.css",
"css/videotag.css",
"css/searchpage.css"
],
"matches": [
"https://*.bilibili.com/*"
],
"run_at": "document_start"
}
],
"author": "[email protected]",
"permissions": [
"storage"
],
"host_permissions": [
"https://*.bilibili.com/*"
],
"action": {
"default_popup": "options/options.html",
"default_title": "BiliScope - Bilibili插件,你的B站小助手"
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"background": {
"service_worker": "changelog/background.js"
},
"web_accessible_resources": [
{
"resources": ["img/bililv.svg", "scripts/sitescripts/*.js", "changelog/changelog.*"],
"matches": ["https://*.bilibili.com/*"]
}
]
}