Bluejeans/Zoom Closer

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

什麼是Bluejeans/Zoom Closer?

Bluejeans/Zoom Closer是由Edgar Gonzalez開發的Chrome擴展程式,該擴展的主要功能是“This extension automatically closes the launched window for Bluejeans and Zoom meetings.”。

擴展截圖

screenshot

下載Bluejeans/Zoom Closer擴展crx文件

下載Bluejeans/Zoom Closer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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).                    

擴展基本資訊

名稱 Bluejeans/Zoom Closer Bluejeans/Zoom Closer
ID jnpjcapbahjpooibdheccijcjalacdno
官方網址 https://chromewebstore.google.com/detail/bluejeanszoom-closer/jnpjcapbahjpooibdheccijcjalacdno
簡介 This extension automatically closes the launched window for Bluejeans and Zoom meetings.
檔案大小 16.77 KB
安裝次數 259
目前版本 0.1
更新時間 2023-05-31
上架時間 2020-04-24
評分 5.00/5 共 2 次評分
開發者 Edgar Gonzalez
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/edgar/bluejeans-zoom-closer
說明頁面URL https://github.com/edgar/bluejeans-zoom-closer/issues
支援的語言 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"
            ]
        }
    ]
}