GPT-3 Anywhere

Makes Open AI API calls and adds the results to websites' text inputs

什么是GPT-3 Anywhere?

GPT-3 Anywhere是由hacksocial.ai开发的Chrome扩展程序,该扩展的主要功能是“Makes Open AI API calls and adds the results to websites' text inputs”。

扩展截图

screenshot
screenshot

下载GPT-3 Anywhere扩展crx文件

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

扩展使用说明

                        Use OpenAI's Playground on any website that accepts text input. Type /g followed by your prompt, then /s to submit your prompt for a completion. Your prompt will be included with the completion. 

e.g. /g"YOUR PROMPT HERE"/s
-> "YOUR PROMPT HERE" "COMPLETION HERE

GPT3 on any website, at any time. GPT-3 Anywhere. 

Write blog posts on Medium or Wix or Wordpress using GPT-3. The power of ChatGPT on any website on Chrome. Just type the trigger /g followed by your prompt followed by /s and receive a completion from any model you have access to in OpenAI's playground -- including your own finetuned models! 

Adjust the temperature, maximum length, stop sequences, and other variables just like in the playground.

Note: You need an API key from OpenAI to use this extension. Sign up for an account and get an API key here: https://platform.openai.com/account/api-keys                    

扩展基本信息

名称 GPT-3 Anywhere GPT-3 Anywhere
ID ehjlgmphmipkpedoadmdgkodhgmdandc
官方URL https://chromewebstore.google.com/detail/gpt-3-anywhere/ehjlgmphmipkpedoadmdgkodhgmdandc
简介 Makes Open AI API calls and adds the results to websites' text inputs
文件大小 646 KB
安装次数 1,600
当前版本 1.1.2
更新时间 2023-03-23
上架时间 2022-10-10
开发者 hacksocial.ai
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://www.freeprivacypolicy.com/live/abb1a3a5-6311-43da-a78d-dcdb56ab1416
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPT-3 Anywhere",
    "version": "1.1.2",
    "action": {
        "detauls_title": "Start Setup"
    },
    "description": "Makes Open AI API calls and adds the results to websites' text inputs",
    "icons": {
        "48": "icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "match_about_blank": true,
            "match_origin_as_fallback": true
        }
    ],
    "author": "David Frankle",
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "storage",
        "clipboardWrite",
        "clipboardRead"
    ]
}