forked from joetech/chatbot-save-file
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (37 loc) · 1.03 KB
/
manifest.json
File metadata and controls
38 lines (37 loc) · 1.03 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
{
"manifest_version": 3,
"name": "Chatbot Save File",
"description": "When getting ChatGPT to write code for you, now you can add download links for all the code blocks. Currently only works with ChatGPT and only adds links to the last 5 code blocks. If the code block is preceded by a filename, that name will be used. Otherwise, it will download as 'code.txt'.",
"version": "1.0",
"permissions": [
"activeTab",
"downloads",
"scripting",
"storage"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"host_permissions": [
"https://*.openai.com/*"
],
"web_accessible_resources": [
{
"resources": ["icon16.png"],
"matches": ["https://*.openai.com/*"]
}
]
}