gpt.best

Share ChatGPT Transcripts

Co to jest gpt.best?

gpt.best to rozszerzenie Chrome opracowane przez Riley Tomasek, a jego główną funkcją jest „Share ChatGPT Transcripts”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia gpt.best

Pobierz pliki rozszerzeń gpt.best 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

                        GPTBest adds a share button to the ChatGPT app that creates a shareable link from the current conversation. It's great for sharing longer conversations that don't fit in a screenshot.                    

Podstawowe informacje o rozszerzeniu

Nazwa gpt.best gpt.best
ID lfjehajehlondfmmdnacgomigbkfahln
Oficjalny URL https://chromewebstore.google.com/detail/gptbest/lfjehajehlondfmmdnacgomigbkfahln
Opis Share ChatGPT Transcripts
Rozmiar pliku 7.94 KB
Liczba instalacji 850
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2023-03-21
Data Publikacji 2022-12-12
Ocena 4.20/5 Łącznie 5 Oceny
Deweloper Riley Tomasek
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://gpt.best/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "gpt.best",
    "description": "Share ChatGPT Transcripts",
    "version": "1.1.0",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}