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.
Wat is ChatGPT grammar correction for Slack?
ChatGPT grammar correction for Slack is een Chrome-extensie ontwikkeld door mrmikedowney, en de belangrijkste functie is "Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.".
Extensie Screenshots
Download het CRX-bestand van de extensie ChatGPT grammar correction for Slack
Download ChatGPT grammar correction for Slack-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | ChatGPT grammar correction for Slack |
ID | lecfblaooonakdbjhdnkoefhlngjkafl |
Officiële URL | https://chromewebstore.google.com/detail/chatgpt-grammar-correctio/lecfblaooonakdbjhdnkoefhlngjkafl |
Beschrijving | Inject a custom button into Slack's message input form that can be used to check the grammar of the current message. |
Bestandsgrootte | 41.23 KB |
Aantal Installaties | 1,013 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2023-04-13 |
Publicatiedatum | 2023-04-13 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | mrmikedowney |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } |