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 mrmikedowney द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inject a custom button into Slack's message input form that can be used to check the grammar of the current message."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT grammar correction for Slack एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } |