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.".
Снимки экрана расширения
Скачать файл 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 |
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\/*" ] } |