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 هو إضافة Chrome تم تطويرها بواسطة mrmikedowney، والميزة الرئيسية لها هي "Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة ChatGPT grammar correction for Slack

قم بتنزيل ملفات الامتداد ChatGPT grammar correction for Slack بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [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\/*"
    ]
}