GPT Everywhere

Use ChatGPT on the whole internet.

GPT Everywhere là gì?

GPT Everywhere là một tiện ích mở rộng Chrome được phát triển bởi ptmr, và tính năng chính của nó là "Use ChatGPT on the whole internet.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng GPT Everywhere

Tải xuống các tệp mở rộng GPT Everywhere dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GPT Everywhere GPT Everywhere
ID nkfclenpjlmkpoaopeaoioodcefhnebj
URL Chính Thức https://chrome.google.com/webstore/detail/gpt-everywhere/nkfclenpjlmkpoaopeaoioodcefhnebj
Mô tả Use ChatGPT on the whole internet.
Kích Thước Tệp 233 KB
Số Lần Cài Đặt 136
Phiên Bản Hiện Tại 1.3.1
Cập Nhật Lần Cuối 2023-01-21
Ngày Phát Hành 2023-01-10
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển ptmr
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ptmrio/gpt-everywhere
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}