Teams See More

This extension expands collapsed messages in Microsoft Teams Web.

Vad är Teams See More?

Teams See More är en Chrome-tillägg utvecklad av tomarin, och dess huvudfunktion är "This extension expands collapsed messages in Microsoft Teams Web.".

Tilläggsskärmbilder

screenshot

Ladda ner Teams See More-förlängningens CRX-fil

Ladda ner Teams See More-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Teams See More Teams See More
ID ndnacjlajgpdeahkcooiilheddiabjdc
Officiell webbadress https://chromewebstore.google.com/detail/teams-see-more/ndnacjlajgpdeahkcooiilheddiabjdc
Beskrivning This extension expands collapsed messages in Microsoft Teams Web.
Filstorlek 22.4 KB
Antal Installationer 123
Aktuell Version 1.1.1
Senast Uppdaterad 2023-11-12
Publiceringsdatum 2022-02-16
Utvecklare tomarin
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/tomarint/teams-see-more
Hjälpsida URL https://github.com/tomarint/teams-see-more
Stödda Språk 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"
    ]
}