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
官方網址 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"
    ]
}