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.
Hvad er ChatGPT grammar correction for Slack?
ChatGPT grammar correction for Slack er en Chrome-udvidelse udviklet af mrmikedowney, og dens hovedfunktion er "Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.".
Udvidelsesskærmbilleder
Download ChatGPT grammar correction for Slack-udvidelses-CRX-fil
Download ChatGPT grammar correction for Slack-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | ChatGPT grammar correction for Slack |
ID | lecfblaooonakdbjhdnkoefhlngjkafl |
Officiel URL | https://chromewebstore.google.com/detail/chatgpt-grammar-correctio/lecfblaooonakdbjhdnkoefhlngjkafl |
Beskrivelse | Inject a custom button into Slack's message input form that can be used to check the grammar of the current message. |
Filstørrelse | 41.23 KB |
Antal Installationer | 1,013 |
Nuværende Version | 1.2 |
Senest Opdateret | 2023-04-13 |
Udgivelsesdato | 2023-04-13 |
Bedømmelse | 1.00/5 Samlet 1 Bedømmelser |
Udvikler | mrmikedowney |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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\/*" ] } |