-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
45 lines (45 loc) · 1.28 KB
/
Copy pathmanifest.json
File metadata and controls
45 lines (45 loc) · 1.28 KB
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
{
"manifest_version": 3,
"name": "BiViNote",
"version": "2.2.0",
"description": "B站视频字幕笔记工具 - 截图+字幕+Markdown",
"permissions": ["storage", "activeTab", "scripting", "tabs"],
"host_permissions": [
"https://api.bilibili.com/*",
"https://*.bilibili.com/*",
"*://chat.deepseek.com/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://*.bilibili.com/video/*",
"*://*.bilibili.com/list/*"
],
"js": ["libs/jszip.min.js", "libs/cropper.min.js", "libs/wasm-solver.js", "js/state.js", "js/panel.js", "js/subtitle.js", "js/chapter.js", "js/video-info.js", "js/capture.js", "js/export.js", "js/settings.js", "js/crop-viewer.js", "js/deepseek.js", "content.js"],
"css": ["libs/cropper.min.css", "css/panel.css"],
"run_at": "document_idle"
}
],
"action": {
"default_title": "BiViNote",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png"
}
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"web_accessible_resources": [
{
"resources": ["icons/*"],
"matches": ["*://*.bilibili.com/*"]
}
]
}