-
Notifications
You must be signed in to change notification settings - Fork 54
/
manifest.json
40 lines (38 loc) · 952 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
{
"manifest_version": 3,
"name": "Summary for Bilibili",
"version": "1.0.0",
"icons": {
"16": "logo.png",
"32": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"host_permissions": ["https://*.openai.com/"],
"content_scripts": [
{
"matches": ["https://www.bilibili.com/video/*"],
"js": ["src/inject/injecter.ts"],
"run_at": "document_start"
},
{
"matches": [ "https://www.bilibili.com/video/*" ],
"js": [ "src/content-scripts/main.ts"],
"run_at": "document_idle"
},
{
"matches": [ "https://chat.openai.com/chat" ],
"js": [ "src/chat/main.ts"],
"run_at": "document_idle"
}
],
"options_page": "option.html",
"permissions": [
"unlimitedStorage",
"storage"
],
"background": {
"service_worker": "src/background/index.ts",
"type": "module"
}
}