OpenAI API Explorer

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

What is OpenAI API Explorer?

OpenAI API Explorer is a Chrome extension developed by artemreva79, and its main feature is "This extension provides a simple interface for exploring the capabilities of the OpenAI API.".

Extension Screenshots

screenshot
screenshot
screenshot

Download OpenAI API Explorer Extension CRX File

Download OpenAI API Explorer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name OpenAI API Explorer OpenAI API Explorer
ID cancnnlepmbfaegpklfklajlfglbdcan
Official URL https://chromewebstore.google.com/detail/openai-api-explorer/cancnnlepmbfaegpklfklajlfglbdcan
Description This extension provides a simple interface for exploring the capabilities of the OpenAI API.
File Size 330 KB
Installation Count 104
Current Version 1.2.0
Last Updated 2023-05-31
Publish Date 2023-05-26
Developer artemreva79
Email [email protected]
Payment Type free
Extension Website https://github.com/artemu78/OpenAI-API-Explorer
Supported Languages 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"
            ]
        }
    ]
}