BrowserGPT

A ChatGPT agent directly in your browser

什么是BrowserGPT?

BrowserGPT是由chriszhu12开发的Chrome扩展程序,该扩展的主要功能是“A ChatGPT agent directly in your browser”。

扩展截图

screenshot

下载BrowserGPT扩展crx文件

下载BrowserGPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 BrowserGPT BrowserGPT
ID dkggfdfogdfffagkibafginmpogkmaod
官方URL https://chromewebstore.google.com/detail/browsergpt/dkggfdfogdfffagkibafginmpogkmaod
简介 A ChatGPT agent directly in your browser
文件大小 614 KB
安装次数 1,539
当前版本 5.0.6
更新时间 2023-06-16
上架时间 2023-05-15
评分 4.00/5 共4次评分
开发者 chriszhu12
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.browsergpt.app/
帮助页面URL https://www.browsergpt.app/
隐私政策页面URL https://www.browsergpt.app/privacy.html
支持的语言 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"
    ]
}