Chatwork Mention to Team
Chatworkでグループチャットに設定されているチームにメンションできるようにする拡張機能
什么是Chatwork Mention to Team?
Chatwork Mention to Team是由yamatomo73开发的Chrome扩展程序,该扩展的主要功能是“Chatworkでグループチャットに設定されているチームにメンションできるようにする拡張機能”。
扩展截图
下载Chatwork Mention to Team扩展crx文件
下载Chatwork Mention to Team扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Chatworkではチーム機能がありますが、チームにメンションする仕組みがありません。 Chrome拡張機能で、グループチャットに設定されているチームメンバーごとにTOを送る拡張です。 扩展基本信息
| 名称 | |
| ID | gbofncipdgnliehdohjimpdelcmpdeap |
| 官方URL | https://chromewebstore.google.com/detail/chatwork-mention-to-team/gbofncipdgnliehdohjimpdelcmpdeap |
| 简介 | Chatworkでグループチャットに設定されているチームにメンションできるようにする拡張機能 |
| 文件大小 | 39.05 KB |
| 安装次数 | 277 |
| 当前版本 | 0.1 |
| 更新时间 | 2021-11-06 |
| 上架时间 | 2021-11-06 |
| 评分 | 4.00/5 共1次评分 |
| 开发者 | yamatomo73 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Chatwork Mention to Team",
"version": "0.1",
"manifest_version": 2,
"description": "Chatwork\u3067\u30b0\u30eb\u30fc\u30d7\u30c1\u30e3\u30c3\u30c8\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30c1\u30fc\u30e0\u306b\u30e1\u30f3\u30b7\u30e7\u30f3\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u62e1\u5f35\u6a5f\u80fd",
"background": {
"scripts": [
"scripts\/background.js"
]
},
"permissions": [
"storage",
"cookies"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"content_scripts": [
{
"matches": [
"*:\/\/*.chatwork.com\/*",
"*:\/\/chatwork.com\/*",
"*:\/\/kcw.kddi.ne.jp\/*"
],
"js": [
"scripts\/jquery-3.5.1.min.js",
"scripts\/core.js"
],
"run_at": "document_end",
"all_frames": true
}
]
} | |