Spellbook for OpenAI Chat

Quickly cast a spell in chat

Spellbook for OpenAI Chat란 무엇입니까?

Spellbook for OpenAI Chat은(는) mis101247에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly cast a spell in chat"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Spellbook for OpenAI Chat 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This tool helps users quickly send selected text to ChatGPT for processing. Users simply right-click on the selected text, choose Send to ChatGPT, and ChatGPT will process the text and return the results. This tool saves users time on typing and searching for information, while also improving their work efficiency.

If you have any questions or feedback, please feel free to contact us. We are happy to assist you.                    

확장 프로그램 기본 정보

이름 Spellbook for OpenAI Chat Spellbook for OpenAI Chat
ID dkjphoginefnolhlimdopaflffoddffo
공식 URL https://chromewebstore.google.com/detail/spellbook-for-openai-chat/dkjphoginefnolhlimdopaflffoddffo
설명 Quickly cast a spell in chat
파일 크기 136 KB
설치 횟수 171
현재 버전 0.1.4
최근 업데이트 2023-04-13
출시 날짜 2023-03-07
개발자 mis101247
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://mis101247.github.io/chromeWebStore/privacyPolicy2023.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Spellbook for OpenAI Chat",
    "description": "Quickly cast a spell in chat",
    "version": "0.1.4",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "js": [
                "openai\/action.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}