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
电子邮箱 [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"
            ]
        }
    ]
}