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.

什麼是ChatGPT grammar correction for Slack?

ChatGPT grammar correction for Slack是由mrmikedowney開發的Chrome擴展程式,該擴展的主要功能是“Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.”。

擴展截圖

screenshot

下載ChatGPT grammar correction for Slack擴展crx文件

下載ChatGPT grammar correction for Slack擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 ChatGPT grammar correction for Slack ChatGPT grammar correction for Slack
ID lecfblaooonakdbjhdnkoefhlngjkafl
官方網址 https://chromewebstore.google.com/detail/chatgpt-grammar-correctio/lecfblaooonakdbjhdnkoefhlngjkafl
簡介 Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.
檔案大小 41.23 KB
安裝次數 1,013
目前版本 1.2
更新時間 2023-04-13
上架時間 2023-04-13
評分 1.00/5 共 1 次評分
開發者 mrmikedowney
電子郵箱 [email protected]
付費類型 free
支援的語言 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\/*"
    ]
}