This extension integrates ChatGPT into the browser deeply, and provides chat windows, search engines and commonly used websites integration, and selection tools.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "ChatGPTBox",
"description": "Integrating ChatGPT into your browser deeply, everything you need is here",
"version": "2.5.8",
"manifest_version": 2,
"icons": {
"16": "logo.png",
"32": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"permissions": [
"cookies",
"storage",
"contextMenus",
"unlimitedStorage",
"tabs",
"webRequest",
"https://*.chatgpt.com/*",
"https://*.openai.com/",
"https://*.bing.com/",
"wss://*.bing.com/*",
"https://*.poe.com/",
"https://*.google.com/",
"https://claude.ai/",
"https://*.moonshot.cn/*",
"<all_urls>"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_popup": "popup.html?popup=true"
},
"options_ui": {
"page": "popup.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*",
"file://*/*"
],
"js": [
"shared.js",
"content-script.js"
],
"css": [
"content-script.css"
]
}
],
"web_accessible_resources": [
"logo.png"
],
"commands": {
"newChat": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "MacCtrl+X"
},
"description": "Create a new chat"
},
"summarizePage": {
"suggested_key": {
"default": "Alt+B",
"mac": "Alt+B"
},
"description": "Summarize this page"
},
"openConversationPage": {
"suggested_key": {
"default": "Ctrl+Shift+H",
"mac": "MacCtrl+Shift+H"
},
"description": "Open the independent conversation page"
},
"openConversationWindow": {
"description": "Open the independent conversation window"
},
"closeAllChats": {
"description": "Close all chats in this page"
}
},
"browser_specific_settings": {
"gecko": {
"id": "{b764208e-0a98-436d-a599-c1baa044f829}"
}
}
}