BrowseGPT

Automate your browser with artificial intelligence.

BrowseGPT là gì?

BrowseGPT là một tiện ích mở rộng Chrome được phát triển bởi https://browsegpt.ai, và tính năng chính của nó là "Automate your browser with artificial intelligence.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng BrowseGPT 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

                        Give BrowseGPT instructions like "Find a place to stay in Seattle on February 22nd" or "buy a children's book on Amazon", and it will use artificial intelligence to attempt to complete the task for you. BrowseGPT uses OpenAI's GPT-3 model to process web pages and issue commands like CLICK, ENTER_TEXT or NAVIGATE.

Is it useful? Sort of... sometimes it will get stuck in a loop, click on the wrong thing, or navigate to a URL that 404s. It provides a reason for every decision it makes so you can help it correct course if necessary.

⚠️ This is an experimental extension and should be used with caution. Don't use this on pages with private information, or pages where taking the wrong action could cause a serious problem. ⚠️                    

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

Tên BrowseGPT BrowseGPT
ID gpcljmgannpkbohdomdibbbngpphkemd
URL Chính Thức https://chromewebstore.google.com/detail/browsegpt/gpcljmgannpkbohdomdibbbngpphkemd
Mô tả Automate your browser with artificial intelligence.
Kích Thước Tệp 3.37 MB
Số Lần Cài Đặt 1,620
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2023-03-21
Ngày Phát Hành 2023-01-28
Đánh Giá 4.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://browsegpt.ai
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://browsegpt.ai
URL Trang Trợ Giúp https://browsegpt.ai
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BrowseGPT",
    "description": "Automate your browser with artificial intelligence.",
    "version": "2.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}