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
公式URL 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
Eメール [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"
            ]
        }
    ]
}