-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
53 lines (53 loc) · 1.44 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
{
"manifest_version": 3,
"name": "B站视频信息",
"version": "1.0.3",
"description": "可以预览B站视频信息, 播放量、点赞、投币、收藏、转发、等。\n\n还可以将视频信息和链接通过`具体的视频页面`的`左侧边缘处`的`分享按钮`复制到剪切板,方便分享。",
"default_locale": "zh_CN",
"action": {
"default_popup": "./options/popup.html"
},
"permissions": [
"storage"
],
"icons": {
"128": "img/logo.png"
},
"content_scripts": [
{
"js": [
"scripts/content.js",
"scripts/bilibiliAPI.js",
"scripts/md5.js",
"scripts/constants.js",
"scripts/ui.js",
"scripts/uiForShare.js"
],
"css": [
"css/BVCard.css",
"css/BiliSimpleShare.css"
],
"matches": [
"https://*.bilibili.com/*"
],
"run_at": "document_start"
}
],
"author": [
{
"name": "iceriny",
"email": "misssu0108@outlook.com",
"url": "https://github.com/iceriny"
}
],
"web_accessible_resources": [
{
"resources": [
"scripts/markScript.js"
],
"matches": [
"https://*.bilibili.com/*"
]
}
]
}