-
-
Notifications
You must be signed in to change notification settings - Fork 245
/
manifest.json
133 lines (133 loc) · 4.4 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"manifest_version": 3,
"name": "Superpower ChatGPT",
"version": "5.6.6",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzG6ZR+j3lpHF0XrDLIXdrk25idObfq+RK7WM+pIaQmDO2nM5Y+SZJJbFwyxjWX+3V6XOgS5v9Lpnqg46OJ/W9Q5i23Usx1MXgaJBTlEFz0XG+PYK6BElhc9itS7m6oCLknin97a533tusXmm8zW7kaDGy8vycMDY6Ffbqa3sn0PqZ8bXUlAjgO91dQcB8EtlT906hwhZjtfEYvp2hdxYkRFxfuaR1WMLkxttVXv506RXJowxq0LO3aqj83QeJoXkQF1wbzCxYO1VpVGEmYIQxIKw/csusZNZs8gwJrIWtOzhMgDNOFzXNeZl0ASgoj2M9UsZp+Dunn57VT8tQyaE6QIDAQAB",
"description": "ChatGPT with superpowers! Sync/search history locally, create folders, export all chats, pin messages, access thousands of prompts",
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"action": {
"default_popup": "popup.html",
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"permissions": [
"storage",
"unlimitedStorage"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Command+Shift+U"
}
}
},
"host_permissions": [
"https://chat.openai.com/*"
],
"content_scripts": [
{
"js": [
"scripts/interceptor/loadScript.js"
],
"matches": [
"https://chat.openai.com/*"
],
"run_at": "document_start"
},
{
"js": [
"scripts/thirdParty/FileSaver.js",
"scripts/thirdParty/jszip.js",
"scripts/thirdParty/katex.js",
"scripts/thirdParty/texmath.js",
"scripts/thirdParty/markdown-it-sup.js",
"scripts/thirdParty/markdown-it.js",
"scripts/thirdParty/turndown.js",
"scripts/thirdParty/highlight.js",
"scripts/thirdParty/sortable.js",
"scripts/thirdParty/sse.js",
"scripts/content/initialize.js",
"scripts/content/fetchEventListeners.js",
"scripts/content/rowAssistant.js",
"scripts/content/rowUser.js",
"scripts/content/quickAccessMenu.js",
"scripts/content/newChatPage.js",
"scripts/content/promptChain.js",
"scripts/content/keyboardShortcuts.js",
"scripts/content/modelSwitcher.js",
"scripts/content/enableMFA.js",
"scripts/content/customInstructions.js",
"scripts/content/pluginsDropdown.js",
"scripts/content/dropdown.js",
"scripts/content/templateWordsModal.js",
"scripts/content/shareModal.js",
"scripts/content/feedbackModal.js",
"scripts/content/toneList.js",
"scripts/content/writingStyleList.js",
"scripts/content/languageList.js",
"scripts/content/reportReasonList.js",
"scripts/content/categoryList.js",
"scripts/content/sortByList.js",
"scripts/content/api.js",
"scripts/content/global.js",
"scripts/content/instructions.js",
"scripts/content/navbar.js",
"scripts/content/modal.js",
"scripts/content/announcement.js",
"scripts/content/releaseNote.js",
"scripts/content/newsletterList.js",
"scripts/content/timestamp.js",
"scripts/content/continue.js",
"scripts/content/pluginStore.js",
"scripts/content/syncBanner.js",
"scripts/content/conversationElement.js",
"scripts/content/folderElement.js",
"scripts/content/clearConversations.js",
"scripts/content/export.js",
"scripts/content/copyAndCounter.js",
"scripts/content/addToPromptLibrary.js",
"scripts/content/promptLibrary.js",
"scripts/content/promptHistory.js",
"scripts/content/settings.js",
"scripts/content/autoSave.js",
"scripts/content/regenerateResponse.js",
"scripts/content/stopGeneratingResponse.js",
"scripts/content/conversation.js",
"scripts/content/conversationList.js"
],
"css": [
"scripts/styles/global.css",
"scripts/styles/katex.css"
],
"matches": [
"https://chat.openai.com/*"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "scripts/background/background.js"
},
"web_accessible_resources": [
{
"matches": [
"https://chat.openai.com/*"
],
"resources": [
"icons/*",
"sounds/*",
"scripts/content/*",
"scripts/interceptor/*",
"v2/*"
]
}
]
}