GPT Everywhere

Use ChatGPT on the whole internet.

什麼是GPT Everywhere?

GPT Everywhere是由ptmr開發的Chrome擴展程式,該擴展的主要功能是“Use ChatGPT on the whole internet.”。

擴展截圖

screenshot

下載GPT Everywhere擴展crx文件

下載GPT Everywhere擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}