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",
"name": "ChatGPT & Claude AI Sidepanel",
"version": "1.0",
"description": "Access ChatGPT and Claude AI in a side panel",
"manifest_version": 3,
"background": {
"service_worker": "chatgpt-background.js"
},
"action": {
"default_title": "ChatGPT & Claude AI Sidepanel",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"side_panel": {
"default_path": "chatgpt-sidepanel.html"
},
"options_page": "options.html",
"permissions": [
"sidePanel",
"declarativeNetRequest",
"storage"
],
"host_permissions": [
"https:\/\/*.chatgpt.com\/*",
"https:\/\/chatgpt.com\/*",
"https:\/\/*.claude.ai\/*",
"https:\/\/claude.ai\/*",
"https:\/\/*.gemini.google.com\/*",
"https:\/\/gemini.google.com\/*",
"https:\/\/*.chat.deepseek.com\/*",
"https:\/\/chat.deepseek.com\/*",
"https:\/\/*.copilot.microsoft.com\/*",
"https:\/\/copilot.microsoft.com\/*",
"https:\/\/*.preview.reve.art\/*",
"https:\/\/preview.reve.art\/*",
"https:\/\/*.otter.ai\/*",
"https:\/\/otter.ai\/*",
"https:\/\/*.elevenlabs.io\/*",
"https:\/\/elevenlabs.io\/*",
"https:\/\/*.opus.pro\/*",
"https:\/\/opus.pro\/*",
"https:\/\/*.repurpose.io\/*",
"https:\/\/repurpose.io\/*"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "disable-csp",
"enabled": true,
"path": "rules.json"
}
]
},
"commands": {
"toggle-sidepanel": {
"suggested_key": {
"default": "Alt+C"
},
"description": "Toggle the ChatGPT & Claude AI sidepanel"
}
}
}