Teams See More
This extension expands collapsed messages in Microsoft Teams Web.
什麼是Teams See More?
Teams See More是由tomarin開發的Chrome擴展程式,該擴展的主要功能是“This extension expands collapsed messages in Microsoft Teams Web.”。
擴展截圖
下載Teams See More擴展crx文件
下載Teams See More擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Teams See More |
ID | ndnacjlajgpdeahkcooiilheddiabjdc |
官方網址 | https://chromewebstore.google.com/detail/teams-see-more/ndnacjlajgpdeahkcooiilheddiabjdc |
簡介 | This extension expands collapsed messages in Microsoft Teams Web. |
檔案大小 | 22.4 KB |
安裝次數 | 123 |
目前版本 | 1.1.1 |
更新時間 | 2023-11-12 |
上架時間 | 2022-02-16 |
開發者 | tomarin |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/tomarint/teams-see-more |
說明頁面URL | https://github.com/tomarint/teams-see-more |
支援的語言 | 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" ] } |