Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Prompt Keeper",
"version": "3.4",
"description": "Store and manage AI prompts professionally",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"action": {
"default_popup": "index.html",
"default_icon": "icon.png"
},
"permissions": [
"storage",
"contextMenus",
"activeTab"
],
"host_permissions": [
"https:\/\/script.google.com\/*",
"https:\/\/script.googleusercontent.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.chatgpt.com\/*",
"*:\/\/gemini.google.com\/*",
"*:\/\/*.claude.ai\/*",
"*:\/\/copilot.microsoft.com\/*",
"*:\/\/*.grok.com\/*",
"*:\/\/*.deepseek.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
]
}