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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων 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
Ηλεκτρονικό ταχυδρομείο [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\/*"
    ]
}