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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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