3CX Teams Presence

Sets Presence State in MS Teams

3CX Teams Presence là gì?

3CX Teams Presence là một tiện ích mở rộng Chrome được phát triển bởi https://www.t38printer.de, và tính năng chính của nó là "Sets Presence State in MS Teams".

Ả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 3CX Teams Presence

Tải xuống các tệp mở rộng 3CX Teams Presence 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

                        Exteneds 3CX Pbx to synchronize presence state with MS Teams                    

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

Tên 3CX Teams Presence 3CX Teams Presence
ID mdbamfolhkbhebabgfbcnphffgfkpmjn
URL Chính Thức https://chromewebstore.google.com/detail/3cx-teams-presence/mdbamfolhkbhebabgfbcnphffgfkpmjn
Mô tả Sets Presence State in MS Teams
Kích Thước Tệp 16.07 KB
Số Lần Cài Đặt 58
Phiên Bản Hiện Tại 0.0.1.0
Cập Nhật Lần Cuối 2022-05-31
Ngày Phát Hành 2022-04-20
Nhà Phát Triển https://www.t38printer.de
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.t38printer.de
URL Trang Trợ Giúp https://www.t38printer.de
URL Trang Chính Sách Bảo Mật https://mail2fax.t38printer.de/security.html
Ngôn Ngữ Được Hỗ Trợ de
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "3CX Teams Presence",
    "description": "Sets Presence State in MS Teams",
    "version": "0.0.1.0",
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/teams.microsoft.com\/*",
                "https:\/\/teams.live.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/icons\/16.png",
        "19": "images\/icons\/19.png",
        "38": "images\/icons\/38.png",
        "64": "images\/icons\/64.png",
        "128": "images\/icons\/128.png"
    }
}