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.
¿Qué es ChatGPT grammar correction for Slack?
ChatGPT grammar correction for Slack es una extensión de Chrome desarrollada por mrmikedowney, y su función principal es "Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión ChatGPT grammar correction for Slack
Descarga archivos de extensión ChatGPT grammar correction for Slack en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | ChatGPT grammar correction for Slack |
ID | lecfblaooonakdbjhdnkoefhlngjkafl |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-grammar-correctio/lecfblaooonakdbjhdnkoefhlngjkafl |
Descripción | Inject a custom button into Slack's message input form that can be used to check the grammar of the current message. |
Tamaño del Archivo | 41.23 KB |
Cantidad de Instalaciones | 1,013 |
Versión Actual | 1.2 |
Última Actualización | 2023-04-13 |
Fecha de Publicación | 2023-04-13 |
Calificación | 1.00/5 Total de 1 Calificaciones |
Desarrollador | mrmikedowney |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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\/*" ] } |