OpenAI API Explorer

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

Cos'è OpenAI API Explorer?

OpenAI API Explorer è un'estensione di Chrome sviluppata da artemreva79, e la sua funzione principale è "This extension provides a simple interface for exploring the capabilities of the OpenAI API.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione OpenAI API Explorer

Scarica i file di estensione OpenAI API Explorer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome OpenAI API Explorer OpenAI API Explorer
ID cancnnlepmbfaegpklfklajlfglbdcan
URL Ufficiale https://chromewebstore.google.com/detail/openai-api-explorer/cancnnlepmbfaegpklfklajlfglbdcan
Descrizione This extension provides a simple interface for exploring the capabilities of the OpenAI API.
Dimensione del File 330 KB
Conteggio Installazioni 104
Versione Corrente 1.2.0
Ultimo Aggiornamento 2023-05-31
Data di Pubblicazione 2023-05-26
Sviluppatore artemreva79
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/artemu78/OpenAI-API-Explorer
Lingue Supportate 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"
            ]
        }
    ]
}