BrowserGPT

A ChatGPT agent directly in your browser

Wat is BrowserGPT?

BrowserGPT is een Chrome-extensie ontwikkeld door chriszhu12, en de belangrijkste functie is "A ChatGPT agent directly in your browser".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie BrowserGPT

Download BrowserGPT-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam BrowserGPT BrowserGPT
ID dkggfdfogdfffagkibafginmpogkmaod
Officiële URL https://chromewebstore.google.com/detail/browsergpt/dkggfdfogdfffagkibafginmpogkmaod
Beschrijving A ChatGPT agent directly in your browser
Bestandsgrootte 614 KB
Aantal Installaties 1,539
Huidige Versie 5.0.6
Laatst Bijgewerkt 2023-06-16
Publicatiedatum 2023-05-15
Beoordeling 4.00/5 Totaal 4 Beoordelingen
Ontwikkelaar chriszhu12
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.browsergpt.app/
Help Pagina-URL https://www.browsergpt.app/
URL van de Privacybeleid Pagina https://www.browsergpt.app/privacy.html
Ondersteunde Talen 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"
    ]
}