ChatGPT Sidebar for Chrome

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

Co to jest ChatGPT Sidebar for Chrome?

ChatGPT Sidebar for Chrome to rozszerzenie Chrome opracowane przez GPTcore Studio, a jego główną funkcją jest „Use ChatGPT in sidebar. You won't need to waste time swiching between ChatGPT and other tabs.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ChatGPT Sidebar for Chrome

Pobierz pliki rozszerzeń ChatGPT Sidebar for Chrome w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPT Sidebar for Chrome ChatGPT Sidebar for Chrome
ID ofoglgkkfchhiomfffhgeeeklfbnncpf
Oficjalny URL https://chromewebstore.google.com/detail/chatgpt-sidebar-for-chrom/ofoglgkkfchhiomfffhgeeeklfbnncpf
Opis Use ChatGPT in sidebar. You won't need to waste time swiching between ChatGPT and other tabs.
Rozmiar pliku 1.25 MB
Liczba instalacji 228
Aktualna Wersja 1.0.0.0
Ostatnia Aktualizacja 2023-09-11
Data Publikacji 2023-09-11
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper GPTcore Studio
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://gptcorestudio.netlify.app
Adres URL Strony Polityki Prywatności https://gptcorestudio.com/legal/privacy
Obsługiwane Języki 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"
            ]
        }
    ]
}