Teams See More

This extension expands collapsed messages in Microsoft Teams Web.

Teams See Moreとは何ですか?

Teams See Moreはtomarinによって開発されたChromeの拡張機能で、その主な機能は「This extension expands collapsed messages in Microsoft Teams Web.」です。

拡張機能のスクリーンショット

screenshot

Teams See More拡張機能のCRXファイルをダウンロード

Teams See More拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}