GPT Anywhere

Get GPT completions on any webpage.

什么是GPT Anywhere?

GPT Anywhere是由hotspringsclap开发的Chrome扩展程序,该扩展的主要功能是“Get GPT completions on any webpage.”。

扩展截图

screenshot
screenshot

下载GPT Anywhere扩展crx文件

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

扩展使用说明

                        Free OpenAI GPT tool to generate text and input it from any webpage :
1. Save your usual favorite prompts
2. Right-click anywhere on the web
3. Done, GPT is now writing what you want for you

This is ChatGPT at your fingertips.


100% open source. No data collected by the extension.                    

扩展基本信息

名称 GPT Anywhere GPT Anywhere
ID lbbhclbmgmfepdapeapakepecldndpin
官方URL https://chromewebstore.google.com/detail/gpt-anywhere/lbbhclbmgmfepdapeapakepecldndpin
简介 Get GPT completions on any webpage.
文件大小 159 KB
安装次数 404
当前版本 1.2.0
更新时间 2023-04-25
上架时间 2023-02-20
评分 5.00/5 共5次评分
开发者 hotspringsclap
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/CheeseDurger/gpt-anywhere
帮助页面URL https://github.com/CheeseDurger/gpt-anywhere/issues/new
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPT Anywhere",
    "description": "Get GPT completions on any webpage.",
    "version": "1.2.0",
    "icons": {
        "16": "icons\/icon-16px.png",
        "32": "icons\/icon-32px.png",
        "48": "icons\/icon-48px.png",
        "128": "icons\/icon-128px.png"
    },
    "action": {
        "default_title": "Go to this extension's Options to configure your GPT prompts"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "options_page": "options\/index.html",
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/start.js"
            ]
        }
    ]
}