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 to jest ChatGPT grammar correction for Slack?
ChatGPT grammar correction for Slack to rozszerzenie Chrome opracowane przez mrmikedowney, a jego główną funkcją jest „Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ChatGPT grammar correction for Slack
Pobierz pliki rozszerzeń ChatGPT grammar correction for Slack w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | ChatGPT grammar correction for Slack |
ID | lecfblaooonakdbjhdnkoefhlngjkafl |
Oficjalny URL | https://chromewebstore.google.com/detail/chatgpt-grammar-correctio/lecfblaooonakdbjhdnkoefhlngjkafl |
Opis | Inject a custom button into Slack's message input form that can be used to check the grammar of the current message. |
Rozmiar pliku | 41.23 KB |
Liczba instalacji | 1,013 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2023-04-13 |
Data Publikacji | 2023-04-13 |
Ocena | 1.00/5 Łącznie 1 Oceny |
Deweloper | mrmikedowney |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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\/*" ] } |