Teams See More

This extension expands collapsed messages in Microsoft Teams Web.

Co je Teams See More?

Teams See More je rozšíření Chrome vyvinuté tomarin, a jeho hlavní funkcí je „This extension expands collapsed messages in Microsoft Teams Web.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Teams See More

Stáhněte si soubory rozšíření Teams See More ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Teams See More Teams See More
ID ndnacjlajgpdeahkcooiilheddiabjdc
Oficiální URL https://chromewebstore.google.com/detail/teams-see-more/ndnacjlajgpdeahkcooiilheddiabjdc
Popis This extension expands collapsed messages in Microsoft Teams Web.
Velikost souboru 22.4 KB
Počet instalací 123
Aktuální Verze 1.1.1
Poslední Aktualizace 2023-11-12
Datum Vydání 2022-02-16
Vývojář tomarin
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/tomarint/teams-see-more
URL Stránky Nápovědy https://github.com/tomarint/teams-see-more
Podporované Jazyky 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"
    ]
}