Redirect Tab Closer

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

Τι είναι το Redirect Tab Closer;

Το Redirect Tab Closer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον erictdeveloper, και η κύρια λειτουργία του είναι "This extension automatically closes the launched window for Bluejeans/Zoom meetings + Slack URLs.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Redirect Tab Closer

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
            ]
        }
    ]
}