Teams See More
This extension expands collapsed messages in Microsoft Teams Web.
Was ist Teams See More?
Teams See More ist eine Chrome-Erweiterung, die von tomarin entwickelt wurde, und ihr Hauptmerkmal ist "This extension expands collapsed messages in Microsoft Teams Web.".
Erweiterungsscreenshots
Teams See More-Erweiterungs-CRX-Datei herunterladen
Laden Sie Teams See More-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Teams See More |
ID | ndnacjlajgpdeahkcooiilheddiabjdc |
Offizielle URL | https://chromewebstore.google.com/detail/teams-see-more/ndnacjlajgpdeahkcooiilheddiabjdc |
Beschreibung | This extension expands collapsed messages in Microsoft Teams Web. |
Dateigröße | 22.4 KB |
Installationsanzahl | 123 |
Aktuelle Version | 1.1.1 |
Letztes Update | 2023-11-12 |
Veröffentlichungsdatum | 2022-02-16 |
Entwickler | tomarin |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/tomarint/teams-see-more |
Hilfeseite URL | https://github.com/tomarint/teams-see-more |
Unterstützte Sprachen | 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" ] } |