-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmanifest.json
61 lines (61 loc) · 1.54 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
{
"manifest_version": 3,
"name": "FisherAI - Your Best Summary Copilot, Supporting ChatGPT & Gemini",
"version": "1.1.16",
"description": "Your Best Summary Copilot",
"icons": {
"16": "images/logo_16.png",
"32": "images/logo_32.png",
"48": "images/logo_48.png",
"128": "images/logo_128.png"
},
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "",
"default_title": "FisherAI",
"default_icon": {
"16": "images/logo_16.png",
"32": "images/logo_32.png",
"48": "images/logo_48.png",
"128": "images/logo_128.png"
}
},
"background": {
"service_worker": "./background.js"
},
"permissions": [
"storage",
"sidePanel",
"tabs",
"activeTab",
"contextMenus",
"clipboardWrite"
],
"minimum_chrome_version":"114",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"scripts/third/Readability.js",
"scripts/third/youtube-transcript.js",
"scripts/third/marked.min.js",
"scripts/third/pdf.worker.min.js",
"scripts/third/pdf.min.js",
"scripts/constants.js",
"scripts/utils.js",
"scripts/llm.js",
"scripts/content.js" ]
}
],
"web_accessible_resources": [
{
"resources": [
"images/logo_48.png",
"scripts/third/pdf.worker.min.js"
],
"matches": ["<all_urls>"]
}
]
}