GPT Everywhere

Use ChatGPT on the whole internet.

GPT Everywhere란 무엇입니까?

GPT Everywhere은(는) ptmr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use ChatGPT on the whole internet."입니다.

확장 프로그램 스크린샷

screenshot

GPT Everywhere 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is a Chrome/Edge extension that allows you to use the OpenAI GPT-3 API to generate text in any textarea or textfield on the web.

Lightweight and fast, vanilla JavaScript, no dependencies.

Usage Instructions
First go to extension settings and enter an OpenAI API Key. You may generate a new API Key from https://beta.openai.com/account/api-keys

Press Ctrl + . anywhere on the web.

Type a command in the command field, e.g. "Write an E-Mail reply"

Any selected text will autofill the context field.

If the source field from which you started the interation is an a textarea or textfield, the result will show in this element. Else it will be pasted into the context field.                    

확장 프로그램 기본 정보

이름 GPT Everywhere GPT Everywhere
ID nkfclenpjlmkpoaopeaoioodcefhnebj
공식 URL https://chrome.google.com/webstore/detail/gpt-everywhere/nkfclenpjlmkpoaopeaoioodcefhnebj
설명 Use ChatGPT on the whole internet.
파일 크기 233 KB
설치 횟수 136
현재 버전 1.3.1
최근 업데이트 2023-01-21
출시 날짜 2023-01-10
평점 3.00/5 총 2 개의 평점
개발자 ptmr
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ptmrio/gpt-everywhere
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPT Everywhere",
    "description": "Use ChatGPT on the whole internet.",
    "version": "1.3.1",
    "action": {
        "default_popup": "gpt.html",
        "default_icon": ".\/img\/logo-32x32.png"
    },
    "permissions": [
        "clipboardWrite",
        "clipboardRead",
        "storage",
        "activeTab",
        "scripting"
    ],
    "icons": {
        "16": ".\/img\/logo-16x16.png",
        "32": ".\/img\/logo-32x32.png",
        "192": ".\/img\/logo-192x192.png"
    },
    "host_permissions": [
        "https:\/\/api.openai.com\/"
    ],
    "options_page": "options.html",
    "commands": {
        "gptShowPrompt": {
            "suggested_key": {
                "windows": "Ctrl+Period",
                "mac": "Command+Period",
                "chromeos": "Ctrl+Period",
                "linux": "Ctrl+Period"
            },
            "description": "Run GPT on the current page."
        }
    },
    "background": {
        "service_worker": "background.js"
    }
}