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文件

下載Spellbook for OpenAI Chat擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
            ]
        }
    ]
}