Teams See More

This extension expands collapsed messages in Microsoft Teams Web.

Teams See Moreคืออะไร?

Teams See More เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tomarin และคุณลักษณะหลักของมันคือ "This extension expands collapsed messages in Microsoft Teams Web."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Teams See More

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}