Teams See More

This extension expands collapsed messages in Microsoft Teams Web.

Teams See More क्या है?

Teams See More tomarin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension expands collapsed messages in Microsoft Teams Web."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Teams See More एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 Teams See More
ID ndnacjlajgpdeahkcooiilheddiabjdc
आधिकारिक URL 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"
    ]
}