Spellbook for OpenAI Chat

Quickly cast a spell in chat

Cos'è Spellbook for OpenAI Chat?

Spellbook for OpenAI Chat è un'estensione di Chrome sviluppata da mis101247, e la sua funzione principale è "Quickly cast a spell in chat".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Spellbook for OpenAI Chat

Scarica i file di estensione Spellbook for OpenAI Chat in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Spellbook for OpenAI Chat Spellbook for OpenAI Chat
ID dkjphoginefnolhlimdopaflffoddffo
URL Ufficiale https://chromewebstore.google.com/detail/spellbook-for-openai-chat/dkjphoginefnolhlimdopaflffoddffo
Descrizione Quickly cast a spell in chat
Dimensione del File 136 KB
Conteggio Installazioni 171
Versione Corrente 0.1.4
Ultimo Aggiornamento 2023-04-13
Data di Pubblicazione 2023-03-07
Sviluppatore mis101247
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://mis101247.github.io/chromeWebStore/privacyPolicy2023.html
Lingue Supportate 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\/*"
            ]
        }
    ]
}