Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "AI Output Vault",
"version": "0.1",
"description": "Save selected AI-generated text locally and copy it again later with a single click.",
"permissions": [
"storage",
"contextMenus"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*",
"https:\/\/claude.ai\/*",
"https:\/\/gemini.google.com\/*",
"https:\/\/perplexity.ai\/*",
"https:\/\/chat.deepseek.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
]
}