ChatGPT Sidebar for Chrome

Use ChatGPT in sidebar. You won't need to waste time swiching between ChatGPT and other tabs.

What is ChatGPT Sidebar for Chrome?

ChatGPT Sidebar for Chrome is a Chrome extension developed by GPTcore Studio, and its main feature is "Use ChatGPT in sidebar. You won't need to waste time swiching between ChatGPT and other tabs.".

Extension Screenshots

screenshot

Download ChatGPT Sidebar for Chrome Extension CRX File

Download ChatGPT Sidebar for Chrome extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        No wasting time anymore!
Use ChatGPT Sidebar to use ChatGPT in all tabs, instead of switching between browser tabs.

You need to have an OpenAI Account.                    

Extension Basic Information

Name ChatGPT Sidebar for Chrome ChatGPT Sidebar for Chrome
ID ofoglgkkfchhiomfffhgeeeklfbnncpf
Official URL https://chromewebstore.google.com/detail/chatgpt-sidebar-for-chrom/ofoglgkkfchhiomfffhgeeeklfbnncpf
Description Use ChatGPT in sidebar. You won't need to waste time swiching between ChatGPT and other tabs.
File Size 1.25 MB
Installation Count 228
Current Version 1.0.0.0
Last Updated 2023-09-11
Publish Date 2023-09-11
Rating 5.00/5 Total 1 Ratings
Developer GPTcore Studio
Email [email protected]
Payment Type free
Extension Website https://gptcorestudio.netlify.app
Privacy Policy Page URL https://gptcorestudio.com/legal/privacy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Sidebar for Chrome",
    "description": "Use ChatGPT in sidebar. You won't need to waste time swiching between ChatGPT and other tabs.",
    "version": "1.0.0.0",
    "background": {
        "service_worker": "\/background.js"
    },
    "icons": {
        "16": "\/assets\/images\/ChatGPTIcon.png",
        "48": "\/assets\/images\/ChatGPTIcon.png",
        "128": "\/assets\/images\/ChatGPTIcon.png"
    },
    "side_panel": {
        "default_path": "panel.html",
        "openPanelOnActionClick": true
    },
    "offline_enabled": true,
    "permissions": [
        "sidePanel"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "\/background.js"
            ]
        }
    ]
}