Inspect and view changes in Save AI Chats 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Save AI Chats",
"version": "1.1",
"description": "Secure your AI chats by saving your next generation of digital assets",
"background": {
"service_worker": "scripts/background.js"
},
"permissions": [
"storage",
"tabs",
"webRequest",
"activeTab"
],
"host_permissions": [
"https://app.saveaichats.com/*"
],
"content_scripts": [
{
"matches": [
"https://chat.openai.com/*",
"https://perplexity.ai/*",
"https://chatgpt.com/*",
"https://www.perplexity.ai/*",
"https://claude.ai/*",
"https://chat.deepseek.com/*"
],
"js": [
"scripts/utils/website-utils-nomodule.js",
"scripts/websites/perplexity.js",
"scripts/websites/claude.js",
"scripts/websites/deepseek.js",
"scripts/content.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' https://api.saveaichats.com https://chatgpt.com https://www.perplexity.ai https://claude.ai https://*.saveaichats.com https://chat.deepseek.com"
},
"externally_connectable": {
"matches": [
"*://localhost/*",
"*://*.saveaichats.com/*"
]
},
"web_accessible_resources": [
{
"resources": [
"scripts/chats.js"
],
"matches": [
"<all_urls>"
]
}
]
}