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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | tkm-gchat-ext |
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": [ "*:\/\/*\/*" ] } ] } |