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.
Was ist ChatGPT grammar correction for Slack?
ChatGPT grammar correction for Slack ist eine Chrome-Erweiterung, die von mrmikedowney entwickelt wurde, und ihr Hauptmerkmal ist "Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.".
Erweiterungsscreenshots
ChatGPT grammar correction for Slack-Erweiterungs-CRX-Datei herunterladen
Laden Sie ChatGPT grammar correction for Slack-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | ChatGPT grammar correction for Slack |
ID | lecfblaooonakdbjhdnkoefhlngjkafl |
Offizielle URL | https://chromewebstore.google.com/detail/chatgpt-grammar-correctio/lecfblaooonakdbjhdnkoefhlngjkafl |
Beschreibung | Inject a custom button into Slack's message input form that can be used to check the grammar of the current message. |
Dateigröße | 41.23 KB |
Installationsanzahl | 1,013 |
Aktuelle Version | 1.2 |
Letztes Update | 2023-04-13 |
Veröffentlichungsdatum | 2023-04-13 |
Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
Entwickler | mrmikedowney |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } |