Bluejeans/Zoom Closer

This extension automatically closes the launched window for Bluejeans and Zoom meetings.

Bluejeans/Zoom Closer là gì?

Bluejeans/Zoom Closer là một tiện ích mở rộng Chrome được phát triển bởi Edgar Gonzalez, và tính năng chính của nó là "This extension automatically closes the launched window for Bluejeans and 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 Bluejeans/Zoom Closer

Tải xuống các tệp mở rộng Bluejeans/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 Bluejeans/Zoom tabs that are created when launching a Bluejeans or Zoom meeting. 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 with Bluejeans and Zoom URLs).                    

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

Tên Bluejeans/Zoom Closer Bluejeans/Zoom Closer
ID jnpjcapbahjpooibdheccijcjalacdno
URL Chính Thức https://chromewebstore.google.com/detail/bluejeanszoom-closer/jnpjcapbahjpooibdheccijcjalacdno
Mô tả This extension automatically closes the launched window for Bluejeans and Zoom meetings.
Kích Thước Tệp 16.77 KB
Số Lần Cài Đặt 259
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2023-05-31
Ngày Phát Hành 2020-04-24
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Edgar Gonzalez
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/edgar/bluejeans-zoom-closer
URL Trang Trợ Giúp https://github.com/edgar/bluejeans-zoom-closer/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bluejeans\/Zoom Closer",
    "description": "This extension automatically closes the launched window for Bluejeans and Zoom meetings.",
    "version": "0.1",
    "icons": {
        "16": "assets\/icon-16.png",
        "32": "assets\/icon-32.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\/*",
                "https:\/\/bluejeans.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}