Redirect Tab Closer

This extension automatically closes the launched window for Bluejeans/Zoom meetings + Slack URLs.

Redirect Tab Closerとは何ですか?

Redirect Tab Closerはerictdeveloperによって開発されたChromeの拡張機能で、その主な機能は「This extension automatically closes the launched window for Bluejeans/Zoom meetings + Slack URLs.」です。

拡張機能のスクリーンショット

screenshot

Redirect Tab Closer拡張機能のCRXファイルをダウンロード

Redirect Tab Closer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Automatically closes the Bluejeans, Zoom and Slack tabs that are created when launching a meeting or a Slack link. 

Uses Chrome Context Script to send a message to a background page to close the tab. Requires no special permissions (except access to the redirect page with Bluejeans, Zoom or Slack URLs). Based on the Zoom Closer extension.

Will try to extend this in the future to allow for user-configurable URLs that will get auto-closed.                    

拡張機能の基本情報

名前 Redirect Tab Closer Redirect Tab Closer
ID fdffoepgfafohjnlmdeaekigejifenpd
公式URL https://chromewebstore.google.com/detail/redirect-tab-closer/fdffoepgfafohjnlmdeaekigejifenpd
説明 This extension automatically closes the launched window for Bluejeans/Zoom meetings + Slack URLs.
ファイルサイズ 38.37 KB
インストール数 587
現在のバージョン 0.3
最終更新日 2021-02-16
公開日 2021-02-15
評価 4.83/5 合計 6 レビュー
開発者 erictdeveloper
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/ethirolle/redirect-tab-closer
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Redirect Tab Closer",
    "description": "This extension automatically closes the launched window for Bluejeans\/Zoom meetings + Slack URLs.",
    "version": "0.3",
    "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\/*",
                "https:\/\/*.slack.com\/archives\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}