ChatGPTEverywhere

Use ChatGPT wherever you want

Co to jest ChatGPTEverywhere?

ChatGPTEverywhere to rozszerzenie Chrome opracowane przez Alyosha, a jego główną funkcją jest „Use ChatGPT wherever you want”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia ChatGPTEverywhere

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

                        In the past, using ChatGPT required users to open a ChatGPT tab and paste the text they wanted to use. 

This plugin, however, allows users to select a piece of text on any webpage and directly call ChatGPT.                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPTEverywhere ChatGPTEverywhere
ID mbffncligbhhdgecingogecdhfdknehb
Oficjalny URL https://chromewebstore.google.com/detail/chatgpteverywhere/mbffncligbhhdgecingogecdhfdknehb
Opis Use ChatGPT wherever you want
Rozmiar pliku 345 KB
Liczba instalacji 103
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2023-02-23
Data Publikacji 2023-02-22
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Alyosha
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPTEverywhere",
    "description": "Use ChatGPT wherever you want",
    "icons": {
        "128": "images\/alyosha.png",
        "16": "images\/alyosha.png",
        "48": "images\/alyosha.png"
    },
    "background": {
        "service_worker": "service_worker.js"
    },
    "manifest_version": 3,
    "version": "0.0.1",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/content.js"
            ],
            "type": "module",
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "chatgpttooltip-injected-by-alyosha1024.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "\/images\/alyosha.png",
            "32": "\/images\/alyosha.png",
            "48": "\/images\/alyosha.png",
            "128": "\/images\/alyosha.png"
        }
    }
}