BrowseGPT

Automate your browser with artificial intelligence.

什么是BrowseGPT?

BrowseGPT是由https://browsegpt.ai开发的Chrome扩展程序,该扩展的主要功能是“Automate your browser with artificial intelligence.”。

扩展截图

screenshot
screenshot
screenshot

下载BrowseGPT扩展crx文件

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

扩展使用说明

                        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. ⚠️                    

扩展基本信息

名称 BrowseGPT BrowseGPT
ID gpcljmgannpkbohdomdibbbngpphkemd
官方URL https://chromewebstore.google.com/detail/browsegpt/gpcljmgannpkbohdomdibbbngpphkemd
简介 Automate your browser with artificial intelligence.
文件大小 3.37 MB
安装次数 1,620
当前版本 2.0
更新时间 2023-03-21
上架时间 2023-01-28
评分 4.00/5 共5次评分
开发者 https://browsegpt.ai
电子邮箱 [email protected]
付费类型 free
扩展官网 https://browsegpt.ai
帮助页面URL https://browsegpt.ai
支持的语言 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"
    }
}