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开发的Chrome扩展程序,该扩展的主要功能是“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扩展crx文件
下载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\/*" ] } |