Inspect and view changes in Prompt Save Reuse: ChatGPT & Gemini source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Prompt Save Reuse: ChatGPT & Gemini",
"version": "2.1",
"description": "Save and reuse prompts in ChatGPT and Gemini. Single-click to save/retrieve, double-click to append, right-click for more options.",
"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"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}