Microsoft Teams Reply

A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu

Microsoft Teams Replyคืออะไร?

Microsoft Teams Reply เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ruslan Peshchuk และคุณลักษณะหลักของมันคือ "A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Microsoft Teams Reply ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu.

Donate: https://www.patreon.com/peshrus                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Microsoft Teams Reply Microsoft Teams Reply
ID fgdlknkkknhcdldggojiooiemajodncl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/microsoft-teams-reply/fgdlknkkknhcdldggojiooiemajodncl
คำอธิบาย A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu
ขนาดไฟล์ 10.09 KB
จำนวนการติดตั้ง 5,631
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2020-10-13
วันที่เผยแพร่ 2020-05-19
คะแนน 3.91/5 รวมทั้งหมด 22 คะแนน
ผู้พัฒนา Ruslan Peshchuk
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.patreon.com/peshrus
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Microsoft Teams Reply",
    "version": "1.1",
    "description": "A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu",
    "manifest_version": 2,
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "96": "icon96.png"
    },
    "background": {
        "scripts": [
            "js\/ms-teams-reply-background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/teams.microsoft.com\/*",
                "https:\/\/teams.microsoft.com.us.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us.access-control.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us.saml.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us2.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us2.access-control.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us2.saml.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us3.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us3.access-control.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us3.saml.cas.ms\/*",
                "https:\/\/teams.microsoft.com.eu1.cas.ms\/*",
                "https:\/\/teams.microsoft.com.eu1.access-control.cas.ms\/*",
                "https:\/\/teams.microsoft.com.eu1.saml.cas.ms\/*",
                "https:\/\/teams.microsoft.com.eu2.cas.ms\/*",
                "https:\/\/teams.microsoft.com.eu2.access-control.cas.ms\/*",
                "https:\/\/teams.microsoft.com.eu2.saml.cas.ms\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/ms-teams-reply-content.js"
            ]
        }
    ]
}