Spellbook for OpenAI Chat

Quickly cast a spell in chat

Was ist Spellbook for OpenAI Chat?

Spellbook for OpenAI Chat ist eine Chrome-Erweiterung, die von mis101247 entwickelt wurde, und ihr Hauptmerkmal ist "Quickly cast a spell in chat".

Erweiterungsscreenshots

screenshot
screenshot

Spellbook for OpenAI Chat-Erweiterungs-CRX-Datei herunterladen

Laden Sie Spellbook for OpenAI Chat-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Spellbook for OpenAI Chat Spellbook for OpenAI Chat
ID dkjphoginefnolhlimdopaflffoddffo
Offizielle URL https://chromewebstore.google.com/detail/spellbook-for-openai-chat/dkjphoginefnolhlimdopaflffoddffo
Beschreibung Quickly cast a spell in chat
Dateigröße 136 KB
Installationsanzahl 171
Aktuelle Version 0.1.4
Letztes Update 2023-04-13
Veröffentlichungsdatum 2023-03-07
Entwickler mis101247
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://mis101247.github.io/chromeWebStore/privacyPolicy2023.html
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}