Redirect Tab Closer

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

Redirect Tab Closer क्या है?

Redirect Tab Closer erictdeveloper द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension automatically closes the launched window for Bluejeans/Zoom meetings + Slack URLs."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Redirect Tab Closer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
            ]
        }
    ]
}