tkm-gchat-ext
Makes Google Chat™ more useful. Read Later, Copy Message/Thread URL, Change Favorite Emoji, Change List Order, etc.
什么是tkm-gchat-ext?
tkm-gchat-ext是由たかみ开发的Chrome扩展程序,该扩展的主要功能是“Makes Google Chat™ more useful. Read Later, Copy Message/Thread URL, Change Favorite Emoji, Change List Order, etc.”。
扩展截图
下载tkm-gchat-ext扩展crx文件
下载tkm-gchat-ext扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds features to make Google Chat™ more useful.
- Support English and Japanese
- Support dark mode and light mode
- Button to show the mentioned messages
- Button to copy the URL of the thread
- Button to copy the URL of the message
- Enable to jump to not only thread but also message
- Read Later (add message to list, and jump to message from list)
- Change the set of frequently used emoji(reaction)
- Change the Display Name of Spaces
- Color Labels to help distinguish Spaces by color
- Display chat list and space list compactly
- Change the display order of each item in chat list and space list
- Resize the width of chat list and space list
- Express the code blocks in style
- Express the block quote (>) in style
- Change the format of posted datetime
- Display the user id next to the poster's name
- Set some shortcut keys 扩展基本信息
| 名称 | |
| ID | dndlogdahhepeejieppcfccajdbmeajd |
| 官方URL | https://chromewebstore.google.com/detail/tkm-gchat-ext/dndlogdahhepeejieppcfccajdbmeajd |
| 简介 | Makes Google Chat™ more useful. Read Later, Copy Message/Thread URL, Change Favorite Emoji, Change List Order, etc. |
| 文件大小 | 174 KB |
| 安装次数 | 5,109 |
| 当前版本 | 2.6.1 |
| 更新时间 | 2023-12-19 |
| 上架时间 | 2022-02-05 |
| 评分 | 5.00/5 共5次评分 |
| 开发者 | たかみ |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_ExtensionName__",
"description": "__MSG_ExtensionDescription__",
"version": "2.6.1",
"manifest_version": 3,
"default_locale": "en",
"icons": {
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/chat\/*",
"https:\/\/chat.google.com\/*"
],
"css": [
"tkm-gchat-ext-main.css"
],
"js": [
"tkm-gchat-ext-main.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset-msg-jump",
"enabled": false,
"path": "ruleset-msg-jump.json"
}
]
},
"action": {
"default_icon": {
"128": "icon-128.png"
},
"default_popup": "tkm-gchat-ext-popup.html"
},
"background": {
"service_worker": "tkm-gchat-ext-background.js"
},
"permissions": [
"storage",
"declarativeNetRequest"
],
"host_permissions": [
"https:\/\/chat.google.com\/*\/*\/*"
],
"web_accessible_resources": [
{
"resources": [
"icon-128.png"
],
"matches": [
"*:\/\/*\/*"
]
}
]
} | |