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.
ChatGPT grammar correction for Slackคืออะไร?
ChatGPT grammar correction for Slack เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mrmikedowney และคุณลักษณะหลักของมันคือ "Inject a custom button into Slack's message input form that can be used to check the grammar of the current message."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT grammar correction for Slack
ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT grammar correction for Slack ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ChatGPT grammar correction for Slack |
ID | lecfblaooonakdbjhdnkoefhlngjkafl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chatgpt-grammar-correctio/lecfblaooonakdbjhdnkoefhlngjkafl |
คำอธิบาย | Inject a custom button into Slack's message input form that can be used to check the grammar of the current message. |
ขนาดไฟล์ | 41.23 KB |
จำนวนการติดตั้ง | 1,013 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2023-04-13 |
วันที่เผยแพร่ | 2023-04-13 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | mrmikedowney |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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\/*" ] } |