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.

What is ChatGPT grammar correction for Slack?

ChatGPT grammar correction for Slack is a Chrome extension developed by mrmikedowney, and its main feature is "Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.".

Extension Screenshots

screenshot

Download ChatGPT grammar correction for Slack Extension CRX File

Download ChatGPT grammar correction for Slack extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name ChatGPT grammar correction for Slack ChatGPT grammar correction for Slack
ID lecfblaooonakdbjhdnkoefhlngjkafl
Official URL https://chromewebstore.google.com/detail/chatgpt-grammar-correctio/lecfblaooonakdbjhdnkoefhlngjkafl
Description Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.
File Size 41.23 KB
Installation Count 1,013
Current Version 1.2
Last Updated 2023-04-13
Publish Date 2023-04-13
Rating 1.00/5 Total 1 Ratings
Developer mrmikedowney
Email [email protected]
Payment Type free
Supported Languages 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\/*"
    ]
}