ChatGPT grammar correction for Slack

Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.

Cos'è ChatGPT grammar correction for Slack?

ChatGPT grammar correction for Slack è un'estensione di Chrome sviluppata da mrmikedowney, e la sua funzione principale è "Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ChatGPT grammar correction for Slack

Scarica i file di estensione ChatGPT grammar correction for Slack 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 extension will add a custom button into Slack's message input form that can be used to check the English grammar of the current message. It can also translate it from any languages to English.                    

Informazioni di Base sull'Estensione

Nome ChatGPT grammar correction for Slack ChatGPT grammar correction for Slack
ID lecfblaooonakdbjhdnkoefhlngjkafl
URL Ufficiale https://chromewebstore.google.com/detail/chatgpt-grammar-correctio/lecfblaooonakdbjhdnkoefhlngjkafl
Descrizione Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.
Dimensione del File 41.23 KB
Conteggio Installazioni 1,013
Versione Corrente 1.2
Ultimo Aggiornamento 2023-04-13
Data di Pubblicazione 2023-04-13
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore mrmikedowney
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT grammar correction for Slack",
    "version": "1.2",
    "description": "Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.",
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.slack.com\/*"
            ],
            "js": [
                "jquery-3.6.4.min.js",
                "content_script.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*.slack.com\/*"
    ]
}