OpenAI API Explorer

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

OpenAI API Explorerとは何ですか?

OpenAI API Explorerはartemreva79によって開発されたChromeの拡張機能で、その主な機能は「This extension provides a simple interface for exploring the capabilities of the OpenAI API.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

OpenAI API Explorer拡張機能のCRXファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}