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
公式URL 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
Eメール [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\/*"
    ]
}