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.

Vad är ChatGPT grammar correction for Slack?

ChatGPT grammar correction for Slack är en Chrome-tillägg utvecklad av mrmikedowney, och dess huvudfunktion är "Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.".

Tilläggsskärmbilder

screenshot

Ladda ner ChatGPT grammar correction for Slack-förlängningens CRX-fil

Ladda ner ChatGPT grammar correction for Slack-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn ChatGPT grammar correction for Slack ChatGPT grammar correction for Slack
ID lecfblaooonakdbjhdnkoefhlngjkafl
Officiell webbadress https://chromewebstore.google.com/detail/chatgpt-grammar-correctio/lecfblaooonakdbjhdnkoefhlngjkafl
Beskrivning Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.
Filstorlek 41.23 KB
Antal Installationer 1,013
Aktuell Version 1.2
Senast Uppdaterad 2023-04-13
Publiceringsdatum 2023-04-13
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare mrmikedowney
E-post [email protected]
Betalningssätt free
Stödda Språk 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\/*"
    ]
}