OpenAI API Explorer

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

OpenAI API Explorer क्या है?

OpenAI API Explorer artemreva79 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension provides a simple interface for exploring the capabilities of the OpenAI API."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में OpenAI API Explorer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}