Anywhere GPT

The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.

ما هو Anywhere GPT؟

Anywhere GPT هو إضافة Chrome تم تطويرها بواسطة besnard.nicolas، والميزة الرئيسية لها هي "The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.".

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

screenshot
screenshot

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

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

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

                        Anywhere GTP allows you to save those prompt and quickly apply them anywhere you want                    

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

الاسم Anywhere GPT Anywhere GPT
ID gjlmelmekegnlljjhiidajoopdlnldhd
عنوان URL الرسمي https://chromewebstore.google.com/detail/anywhere-gpt/gjlmelmekegnlljjhiidajoopdlnldhd
الوصف The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.
حجم الملف 158 KB
عدد التثبيتات 37
النسخة الحالية 1.2
آخر تحديث 2023-02-23
تاريخ النشر 2023-02-22
تقييم 5.00/5 مجموع تقييمات 1
المطور besnard.nicolas
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Anywhere GPT",
    "description": "The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.",
    "version": "1.2",
    "manifest_version": 3,
    "action": {
        "default_title": "Configure AnywhereGPT"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/chat*"
            ],
            "run_at": "document_end",
            "js": [
                ".\/inject-prompt.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.global.js"
    },
    "icons": {
        "16": "chatgpt.png",
        "48": "chatgpt.png",
        "128": "chatgpt.png"
    },
    "options_ui": {
        "page": "settings\/index.html"
    }
}