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 là gì?

Microsoft Teams Reply là một tiện ích mở rộng Chrome được phát triển bởi Ruslan Peshchuk, và tính năng chính của nó là "A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Microsoft Teams Reply

Tải xuống các tệp mở rộng Microsoft Teams Reply dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Microsoft Teams Reply Microsoft Teams Reply
ID fgdlknkkknhcdldggojiooiemajodncl
URL Chính Thức https://chromewebstore.google.com/detail/microsoft-teams-reply/fgdlknkkknhcdldggojiooiemajodncl
Mô tả A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu
Kích Thước Tệp 10.09 KB
Số Lần Cài Đặt 5,631
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2020-10-13
Ngày Phát Hành 2020-05-19
Đánh Giá 3.91/5 Tổng số 22 Đánh Giá
Nhà Phát Triển Ruslan Peshchuk
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.patreon.com/peshrus
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}