ChatGPT Extension

This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.

Co to jest ChatGPT Extension?

ChatGPT Extension to rozszerzenie Chrome opracowane przez Oliver N., a jego główną funkcją jest „This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ChatGPT Extension

Pobierz pliki rozszerzeń ChatGPT Extension 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

                        This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session. Simply click the extension icon in your browser toolbar to activate ChatGPT. ChatGPT is a powerful language model that uses deep learning to produce human-like responses to text input.                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPT Extension ChatGPT Extension
ID ehigecokdaejpecogfefhmoemlapfjko
Oficjalny URL https://chromewebstore.google.com/detail/chatgpt-extension/ehigecokdaejpecogfefhmoemlapfjko
Opis This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.
Rozmiar pliku 281 KB
Liczba instalacji 716
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2022-12-21
Data Publikacji 2022-12-21
Ocena 1.00/5 Łącznie 2 Oceny
Deweloper Oliver N.
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/iOliverNguyen/chatgpt-box-extension
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": [],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "content_script.css"
            ],
            "js": [
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.",
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "96": "icon96.png",
        "128": "icon128.png",
        "512": "icon512.png"
    },
    "manifest_version": 3,
    "name": "ChatGPT Extension",
    "version": "0.1.0",
    "web_accessible_resources": [
        {
            "extension_ids": [],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "assets\/*"
            ]
        }
    ]
}