Zoom Closer

This extension automatically closes the launched window from Zoom meetings.

Zoom Closer là gì?

Zoom Closer là một tiện ích mở rộng Chrome được phát triển bởi touchy, và tính năng chính của nó là "This extension automatically closes the launched window from Zoom meetings.".

Ả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 Zoom Closer

Tải xuống các tệp mở rộng Zoom Closer 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

                        Automatically closes the Zoom Post Attendee window that is created when launching a Zoom meeting from zoom.us. Uses Chrome Context Script to send a message to a background page to close the tab. Requires no special permissions (except access to the page 'https://zoom.us/postattende' and 'https://zoom.us/j/*).

Source: https://github.com/seanstar12/zoom-close

1.7: Updated timeout to 6 seconds (https://github.com/seanstar12/zoom-close/pull/8)
1.6: Merged change from faorfwd to add zoom.us/s/* domain
1.5: Merged change from chriscannon to add zoom.us/j/* domain                    

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

Tên Zoom Closer Zoom Closer
ID appjbedfhcmpknanmbndpojcllfaemal
URL Chính Thức https://chrome.google.com/webstore/detail/zoom-closer/appjbedfhcmpknanmbndpojcllfaemal
Mô tả This extension automatically closes the launched window from Zoom meetings.
Kích Thước Tệp 129 KB
Số Lần Cài Đặt 108,819
Phiên Bản Hiện Tại 1.7
Cập Nhật Lần Cuối 2020-05-21
Ngày Phát Hành 2020-05-21
Đánh Giá 3.63/5 Tổng số 109 Đánh Giá
Nhà Phát Triển touchy
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Zoom Closer",
    "description": "This extension automatically closes the launched window from Zoom meetings.",
    "version": "1.7",
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/zoom.us\/postattendee",
                "https:\/\/zoom.us\/j\/*",
                "https:\/\/*.zoom.us\/j\/*",
                "https:\/\/zoom.us\/s\/*",
                "https:\/\/*.zoom.us\/s\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}