-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmanifest.json
39 lines (39 loc) · 1.06 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
{
"manifest_version": 3,
"name": "Prompt Save Reuse: ChatGPT & Gemini",
"version": "2.0",
"description": "Save and reuse prompts in ChatGPT and Gemini. Single-click to save/retrieve, double-click to append, right-click for more options. Now with improved UX and additional features.", // Updated description if necessary
"permissions": ["storage", "activeTab", "scripting", "contextMenus"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://chatgpt.com/*", "https://gemini.google.com/*"],
"js": ["content.js"]
}
],
"icons": {
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"action": {
"default_title": "Prompt Save Reuse"
},
"commands": {
"save-data": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "MacCtrl+Shift+1"
},
"description": "Save Data"
},
"append-data": {
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "MacCtrl+Shift+2"
},
"description": "Append Data"
}
}
}