EmbedGPT - Embed ChatGPT content

Share with one click and easily paste externally.

Co to jest EmbedGPT - Embed ChatGPT content?

EmbedGPT - Embed ChatGPT content to rozszerzenie Chrome opracowane przez https://embedgpt.vercel.app, a jego główną funkcją jest „Share with one click and easily paste externally.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia EmbedGPT - Embed ChatGPT content

Pobierz pliki rozszerzeń EmbedGPT - Embed ChatGPT content 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

                        Easily share ChatGPT content with one click.

You can paste it to a forum as an iframe or share it to communities such as Twitter and Reddit.                    

Podstawowe informacje o rozszerzeniu

Nazwa EmbedGPT - Embed ChatGPT content EmbedGPT - Embed ChatGPT content
ID nbjoccgcnhjmhpholoagaodhgiehbloa
Oficjalny URL https://chromewebstore.google.com/detail/embedgpt-embed-chatgpt-co/nbjoccgcnhjmhpholoagaodhgiehbloa
Opis Share with one click and easily paste externally.
Rozmiar pliku 9.15 KB
Liczba instalacji 114
Aktualna Wersja 1.2.2
Ostatnia Aktualizacja 2023-04-26
Data Publikacji 2023-03-02
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper https://embedgpt.vercel.app
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://embedgpt.vercel.app
Adres URL Strony Pomocy https://embedgpt.vercel.app
Obsługiwane Języki en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "__MSG_description__",
    "version": "1.2.2",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_icon": {
            "16": "16x16.png",
            "32": "32x32.png"
        },
        "default_title": "Share Content"
    },
    "icons": {
        "16": "16x16.png",
        "32": "32x32.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/c\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "run_at": "document_end"
        }
    ],
    "default_locale": "ko"
}