BrowserGPT

A ChatGPT agent directly in your browser

What is BrowserGPT?

BrowserGPT is a Chrome extension developed by chriszhu12, and its main feature is "A ChatGPT agent directly in your browser".

Extension Screenshots

screenshot

Download BrowserGPT Extension CRX File

Download BrowserGPT extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name BrowserGPT BrowserGPT
ID dkggfdfogdfffagkibafginmpogkmaod
Official URL https://chromewebstore.google.com/detail/browsergpt/dkggfdfogdfffagkibafginmpogkmaod
Description A ChatGPT agent directly in your browser
File Size 614 KB
Installation Count 1,539
Current Version 5.0.6
Last Updated 2023-06-16
Publish Date 2023-05-15
Rating 4.00/5 Total 4 Ratings
Developer chriszhu12
Email [email protected]
Payment Type free
Extension Website https://www.browsergpt.app/
Help Page URL https://www.browsergpt.app/
Privacy Policy Page URL https://www.browsergpt.app/privacy.html
Supported Languages 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"
    ]
}