GPT Anywhere

Get GPT completions on any webpage.

ما هو GPT Anywhere؟

GPT Anywhere هو إضافة Chrome تم تطويرها بواسطة hotspringsclap، والميزة الرئيسية لها هي "Get GPT completions on any webpage.".

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

screenshot
screenshot

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

قم بتنزيل ملفات الامتداد GPT Anywhere بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Free OpenAI GPT tool to generate text and input it from any webpage :
1. Save your usual favorite prompts
2. Right-click anywhere on the web
3. Done, GPT is now writing what you want for you

This is ChatGPT at your fingertips.


100% open source. No data collected by the extension.                    

معلومات أساسية عن التمديد

الاسم GPT Anywhere GPT Anywhere
ID lbbhclbmgmfepdapeapakepecldndpin
عنوان URL الرسمي https://chromewebstore.google.com/detail/gpt-anywhere/lbbhclbmgmfepdapeapakepecldndpin
الوصف Get GPT completions on any webpage.
حجم الملف 159 KB
عدد التثبيتات 404
النسخة الحالية 1.2.0
آخر تحديث 2023-04-25
تاريخ النشر 2023-02-20
تقييم 5.00/5 مجموع تقييمات 5
المطور hotspringsclap
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/CheeseDurger/gpt-anywhere
عنوان صفحة المساعدة https://github.com/CheeseDurger/gpt-anywhere/issues/new
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPT Anywhere",
    "description": "Get GPT completions on any webpage.",
    "version": "1.2.0",
    "icons": {
        "16": "icons\/icon-16px.png",
        "32": "icons\/icon-32px.png",
        "48": "icons\/icon-48px.png",
        "128": "icons\/icon-128px.png"
    },
    "action": {
        "default_title": "Go to this extension's Options to configure your GPT prompts"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "options_page": "options\/index.html",
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/start.js"
            ]
        }
    ]
}