GPT Everywhere

Use ChatGPT on the whole internet.

ما هو GPT Everywhere؟

GPT Everywhere هو إضافة Chrome تم تطويرها بواسطة ptmr، والميزة الرئيسية لها هي "Use ChatGPT on the whole internet.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة GPT Everywhere

قم بتنزيل ملفات الامتداد GPT Everywhere بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}