-
Notifications
You must be signed in to change notification settings - Fork 12
/
manifest.json
33 lines (33 loc) · 969 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "ChatGPT Cookies",
"author": "Brian Roach",
"homepage_url": "https://github.com/itsbrex/GPT-Cookies",
"description": "Easily copy or download your ChatGPT Cookies + user-agent values with one click.",
"version": "2.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons/icon16x16.png",
"32": "icons/icon32x32.png",
"48": "icons/icon48x48.png",
"64": "icons/icon64x64.png",
"128": "icons/icon128x128.png",
"256": "icons/icon256x256.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16x16.png",
"32": "icons/icon32x32.png",
"48": "icons/icon48x48.png",
"64": "icons/icon64x64.png",
"128": "icons/icon128x128.png",
"256": "icons/icon256x256.png"
}
},
"host_permissions": ["https://*.openai.com/*"],
"permissions": ["activeTab", "cookies", "clipboardWrite"]
}