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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}