forked from gaogaotiantian/biliscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
49 lines (49 loc) · 1.25 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
{
"manifest_version": 3,
"name": "BiliScope - Bilibili插件,知道TA是个什么UP主",
"version": "0.4.2",
"description": "可以在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/options.js",
"scripts/util.js",
"scripts/biliapi.js",
"scripts/searchpage.js",
"scripts/note.js",
"scripts/ui.js",
"scripts/biliscope.js"
],
"css": [
"css/idcard.css",
"css/searchpage.css"
],
"matches": [
"https://*.bilibili.com/*"
],
"run_at": "document_start"
}
],
"author": "[email protected]",
"permissions": [
"storage"
],
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"web_accessible_resources": [
{
"resources": ["img/bililv.svg", "scripts/sitescript.js"],
"matches": ["https://*.bilibili.com/*"]
}
]
}