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": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"version": "1.0.4",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
"128": "icon128.png"
},
"permissions": [
"storage",
"tabs",
"webRequest"
],
"host_permissions": [
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*",
"https:\/\/gemini.google.com\/*",
"https:\/\/chat.deepseek.com\/*",
"https:\/\/deepseek.com\/*",
"https:\/\/claude.ai\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*",
"https:\/\/gemini.google.com\/*",
"https:\/\/chat.deepseek.com\/*",
"https:\/\/deepseek.com\/*"
],
"js": [
"jspdf.umd.min.js",
"jszip.min.js",
"html2canvas.min.js",
"html2pdf.bundle.min.js",
"content.js"
]
},
{
"matches": [
"https:\/\/claude.ai\/*"
],
"js": [
"claude_content.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
"128": "icon128.png"
},
"default_title": "__MSG_extensionName__"
}
}