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.
O que é ChatGPT grammar correction for Slack?
ChatGPT grammar correction for Slack é uma extensão do Chrome desenvolvida por mrmikedowney, e sua principal característica é "Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ChatGPT grammar correction for Slack
Baixe arquivos de extensão ChatGPT grammar correction for Slack no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | ChatGPT grammar correction for Slack |
ID | lecfblaooonakdbjhdnkoefhlngjkafl |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-grammar-correctio/lecfblaooonakdbjhdnkoefhlngjkafl |
Descrição | Inject a custom button into Slack's message input form that can be used to check the grammar of the current message. |
Tamanho do Arquivo | 41.23 KB |
Contagem de Instalações | 1,013 |
Versão Atual | 1.2 |
Última Atualização | 2023-04-13 |
Data de Publicação | 2023-04-13 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | mrmikedowney |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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\/*" ] } |