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