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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}