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 là gì?

ChatGPT grammar correction for Slack là một tiện ích mở rộng Chrome được phát triển bởi mrmikedowney, và tính năng chính của nó là "Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT grammar correction for Slack

Tải xuống các tệp mở rộng ChatGPT grammar correction for Slack dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT grammar correction for Slack ChatGPT grammar correction for Slack
ID lecfblaooonakdbjhdnkoefhlngjkafl
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-grammar-correctio/lecfblaooonakdbjhdnkoefhlngjkafl
Mô tả Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.
Kích Thước Tệp 41.23 KB
Số Lần Cài Đặt 1,013
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2023-04-13
Ngày Phát Hành 2023-04-13
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển mrmikedowney
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}