BrowserGPT

A ChatGPT agent directly in your browser

BrowserGPT là gì?

BrowserGPT là một tiện ích mở rộng Chrome được phát triển bởi chriszhu12, và tính năng chính của nó là "A ChatGPT agent directly in your browser".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng BrowserGPT

Tải xuống các tệp mở rộng BrowserGPT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên BrowserGPT BrowserGPT
ID dkggfdfogdfffagkibafginmpogkmaod
URL Chính Thức https://chromewebstore.google.com/detail/browsergpt/dkggfdfogdfffagkibafginmpogkmaod
Mô tả A ChatGPT agent directly in your browser
Kích Thước Tệp 614 KB
Số Lần Cài Đặt 1,539
Phiên Bản Hiện Tại 5.0.6
Cập Nhật Lần Cuối 2023-06-16
Ngày Phát Hành 2023-05-15
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển chriszhu12
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.browsergpt.app/
URL Trang Trợ Giúp https://www.browsergpt.app/
URL Trang Chính Sách Bảo Mật https://www.browsergpt.app/privacy.html
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}