Spellbook for OpenAI Chat

Quickly cast a spell in chat

Что такое Spellbook for OpenAI Chat?

Spellbook for OpenAI Chat - это расширение Chrome, разработанное mis101247, и его основная функция - "Quickly cast a spell in chat".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Spellbook for OpenAI Chat

Скачайте файлы расширений 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
Официальный 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\/*"
            ]
        }
    ]
}