Teams See More

This extension expands collapsed messages in Microsoft Teams Web.

Cos'è Teams See More?

Teams See More è un'estensione di Chrome sviluppata da tomarin, e la sua funzione principale è "This extension expands collapsed messages in Microsoft Teams Web.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Teams See More

Scarica i file di estensione Teams See More in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Teams See More Teams See More
ID ndnacjlajgpdeahkcooiilheddiabjdc
URL Ufficiale https://chromewebstore.google.com/detail/teams-see-more/ndnacjlajgpdeahkcooiilheddiabjdc
Descrizione This extension expands collapsed messages in Microsoft Teams Web.
Dimensione del File 22.4 KB
Conteggio Installazioni 123
Versione Corrente 1.1.1
Ultimo Aggiornamento 2023-11-12
Data di Pubblicazione 2022-02-16
Sviluppatore tomarin
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/tomarint/teams-see-more
URL della Pagina di Aiuto https://github.com/tomarint/teams-see-more
Lingue Supportate 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"
    ]
}