OpenAI API Explorer

This extension provides a simple interface for exploring the capabilities of the OpenAI API.

ما هو OpenAI API Explorer؟

OpenAI API Explorer هو إضافة Chrome تم تطويرها بواسطة artemreva79، والميزة الرئيسية لها هي "This extension provides a simple interface for exploring the capabilities of the OpenAI API.".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة OpenAI API Explorer

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

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

                        Make a ChatGPT summarize any text.

You'll need OpenAI api key. Here is link to obtain it: https://platform.openai.com/account/api-keys.
Select text.
Choose "OpenAI API Explorer" -> "Summarize"
See summary from OpenAI model as popup window.

API key stored in your browser and used for OpenAI open API calls only.
The selected text is directly sent to the OpenAI API and is not stored anywhere. The OpenAI answer is the summary itself, it is displayed on your screen and is not stored anywhere.                    

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

الاسم OpenAI API Explorer OpenAI API Explorer
ID cancnnlepmbfaegpklfklajlfglbdcan
عنوان URL الرسمي https://chromewebstore.google.com/detail/openai-api-explorer/cancnnlepmbfaegpklfklajlfglbdcan
الوصف This extension provides a simple interface for exploring the capabilities of the OpenAI API.
حجم الملف 330 KB
عدد التثبيتات 104
النسخة الحالية 1.2.0
آخر تحديث 2023-05-31
تاريخ النشر 2023-05-26
المطور artemreva79
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/artemu78/OpenAI-API-Explorer
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "OpenAI API Explorer",
    "version": "1.2.0",
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab"
    ],
    "description": "This extension provides a simple interface for exploring the capabilities of the OpenAI API.",
    "icons": {
        "48": "icons\/icon48.png"
    },
    "action": {
        "default_popup": "options.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}