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
Eメール [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"
    ]
}