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.
Apa itu ChatGPT grammar correction for Slack?
ChatGPT grammar correction for Slack adalah ekstensi Chrome yang dikembangkan oleh mrmikedowney, dan fitur utamanya adalah "Inject a custom button into Slack's message input form that can be used to check the grammar of the current message.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ChatGPT grammar correction for Slack
Unduh file ekstensi ChatGPT grammar correction for Slack dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | ChatGPT grammar correction for Slack |
ID | lecfblaooonakdbjhdnkoefhlngjkafl |
URL Resmi | https://chromewebstore.google.com/detail/chatgpt-grammar-correctio/lecfblaooonakdbjhdnkoefhlngjkafl |
Deskripsi | Inject a custom button into Slack's message input form that can be used to check the grammar of the current message. |
Ukuran File | 41.23 KB |
Jumlah Instalasi | 1,013 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2023-04-13 |
Tanggal Publikasi | 2023-04-13 |
Penilaian | 1.00/5 Total 1 Penilaian |
Pengembang | mrmikedowney |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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\/*" ] } |