Teams See More
This extension expands collapsed messages in Microsoft Teams Web.
Teams See More là gì?
Teams See More là một tiện ích mở rộng Chrome được phát triển bởi tomarin, và tính năng chính của nó là "This extension expands collapsed messages in Microsoft Teams Web.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Teams See More
Tải xuống các tệp mở rộng Teams See More dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Usage 1. Show the context menu (normally right click) on Microsoft Teams Web. 2. Select "Teams See More" from the context menu. 3. The collapsed messages will be expanded.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Teams See More |
ID | ndnacjlajgpdeahkcooiilheddiabjdc |
URL Chính Thức | https://chromewebstore.google.com/detail/teams-see-more/ndnacjlajgpdeahkcooiilheddiabjdc |
Mô tả | This extension expands collapsed messages in Microsoft Teams Web. |
Kích Thước Tệp | 22.4 KB |
Số Lần Cài Đặt | 123 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2023-11-12 |
Ngày Phát Hành | 2022-02-16 |
Nhà Phát Triển | tomarin |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/tomarint/teams-see-more |
URL Trang Trợ Giúp | https://github.com/tomarint/teams-see-more |
Ngôn Ngữ Được Hỗ Trợ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extName__", "version": "1.1.1", "action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "default_title": "__MSG_extName__" }, "default_locale": "en", "description": "__MSG_extDescription__", "icons": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/teams.microsoft.com\/*" ], "js": [ "content_event.js" ] } ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/teams.microsoft.com\/*" ], "permissions": [ "tabs", "contextMenus" ] } |