Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Jan 26, 2026.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "AI Side Panel",
"version": "1.0",
"homepage_url": "https:\/\/github.com\/zhw2590582",
"description": "Access ChatGPT, Grok, and DeepSeek in Chrome\u2019s side panel. Browse and chat with AI at the same time.",
"permissions": [
"storage",
"activeTab",
"scripting",
"sidePanel",
"contextMenus",
"declarativeNetRequest"
],
"host_permissions": [
"*:\/\/chatgpt.com\/*",
"*:\/\/grok.com\/*",
"*:\/\/chat.deepseek.com\/*"
],
"action": {
"default_title": "AI Side Panel"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"background": {
"service_worker": "background.js"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"icons": {
"16": "images\/16.png",
"32": "images\/32.png",
"48": "images\/48.png",
"128": "images\/128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/chatgpt.com\/*",
"*:\/\/grok.com\/*",
"*:\/\/chat.deepseek.com\/*"
],
"js": [
"content.js"
],
"all_frames": true
}
]
}