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.
Co je ChatGPT grammar correction for Slack?
ChatGPT grammar correction for Slack je rozšíření Chrome vyvinuté mrmikedowney, a jeho hlavní funkcí je „Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření ChatGPT grammar correction for Slack
Stáhněte si soubory rozšíření ChatGPT grammar correction for Slack ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | ChatGPT grammar correction for Slack |
ID | lecfblaooonakdbjhdnkoefhlngjkafl |
Oficiální URL | https://chromewebstore.google.com/detail/chatgpt-grammar-correctio/lecfblaooonakdbjhdnkoefhlngjkafl |
Popis | Inject a custom button into Slack's message input form that can be used to check the grammar of the current message. |
Velikost souboru | 41.23 KB |
Počet instalací | 1,013 |
Aktuální Verze | 1.2 |
Poslední Aktualizace | 2023-04-13 |
Datum Vydání | 2023-04-13 |
Hodnocení | 1.00/5 Celkem 1 Hodnocení |
Vývojář | mrmikedowney |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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\/*" ] } |