BrowserGPT

A ChatGPT agent directly in your browser

Co to jest BrowserGPT?

BrowserGPT to rozszerzenie Chrome opracowane przez chriszhu12, a jego główną funkcją jest „A ChatGPT agent directly in your browser”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia BrowserGPT

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

                        BrowserGPT lets you have a ChatGPT directly in your browser, letting you access ChatGPT as your surf the web.

✅ Access ChatGPT without changing tabs
✅ ChatGPT will read and summarize what you're reading
✅ Automatically compose emails, blog posts, and more

The best part? It's entirely open source and free!                    

Podstawowe informacje o rozszerzeniu

Nazwa BrowserGPT BrowserGPT
ID dkggfdfogdfffagkibafginmpogkmaod
Oficjalny URL https://chromewebstore.google.com/detail/browsergpt/dkggfdfogdfffagkibafginmpogkmaod
Opis A ChatGPT agent directly in your browser
Rozmiar pliku 614 KB
Liczba instalacji 1,539
Aktualna Wersja 5.0.6
Ostatnia Aktualizacja 2023-06-16
Data Publikacji 2023-05-15
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper chriszhu12
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.browsergpt.app/
Adres URL Strony Pomocy https://www.browsergpt.app/
Adres URL Strony Polityki Prywatności https://www.browsergpt.app/privacy.html
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A ChatGPT agent directly in your browser",
    "version": "5.0.6",
    "manifest_version": 3,
    "name": "BrowserGPT",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ]
}