Teams and BlueJeans Closer

This extension automatically closes the launcher window for Teams and BlueJeans after 5 seconds.

Τι είναι το Teams and BlueJeans Closer;

Το Teams and BlueJeans Closer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rubber.duck.software.uk, και η κύρια λειτουργία του είναι "This extension automatically closes the launcher window for Teams and BlueJeans after 5 seconds.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Teams and BlueJeans Closer

Λήψη αρχείων επέκτασης Teams and BlueJeans Closer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension closes the unwanted tabs that are opened when users click on links to objects in Microsoft Teams with Desktop Application installed. It supports both Professional Teams and Personal Teams installations.

Technical Description
When users click links to access objects in The Microsoft Teams Application, the link opens a page starting with the address https://teams.microsoft.com/dl/launcher/launcher.html?  or https://teams.live.com/dl/launcher/launcher.html. Each time a link is clicked, a fresh browser tab is opened. This link then launches the Teams Desktop Application and displays the required content. These launcher tabs remain open in your browser. Microsoft Edge and other browsers will put these tabs to sleep, but do not close them, so users soon have multiple tabs open with no useful content. This app closes the unwanted launcher tabs after the Teams Application has opened. 

The tool operates with any link to Teams (Professional or Personal) content, including Links to Tabs, Links to Individual Files, and Links to Objects such as WiKi pages or Tasks. Prior to Office 20-02, Outlook meetings invites also would open this unwanted Tab. Although this was fixed in later versions of office, users accessing Teams from older versions of Windows will still experience this issue. This extension closes these links as well. 

As a side benefit this extension also closes BlueJeans launcher tabs that are opened whenever a BlueJeans meeting is launched. 

Operation
If the Teams Desktop application is not installed, this extension should be disabled by switching it off from the Extension Control page. 
If you wish to disable Closer for one type of Teams installation, disable it on the Extension Control Page by sliding the default on switch to off.  See the third image for details of how this looks in Chrome. 
Edge for Business does not support extension site detection so to disable Closer on a particular site, you should change the Site Access to 'On Specific Sites' and enter in the sites where you wish Closer to operate. 

Applicability 
This extension operates will all Chromium based browsers. It has been tested on Chrome and Edge for Business. It will operate on any Chromium based browser able to read Manifest version 3.0

Version Information
Version 2.0 - First public release with instructions
Version 3.0 - Added support for Personal Teams installations                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Teams and BlueJeans Closer Teams and BlueJeans Closer
ID dobpbiifmofcdlaagglbchamihcmooff
Επίσημο URL https://chromewebstore.google.com/detail/teams-and-bluejeans-close/dobpbiifmofcdlaagglbchamihcmooff
Περιγραφή This extension automatically closes the launcher window for Teams and BlueJeans after 5 seconds.
Μέγεθος Αρχείου 8.3 KB
Αριθμός Εγκαταστάσεων 276
Τρέχουσα Έκδοση 3.0
Τελευταία Ενημέρωση 2021-05-28
Ημερομηνία Δημοσίευσης 2021-03-24
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής rubber.duck.software.uk
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Teams and BlueJeans Closer",
    "description": "This extension automatically closes the launcher window for Teams and BlueJeans after 5 seconds.",
    "version": "3.0",
    "icons": {
        "16": "assets\/icon-16.png",
        "32": "assets\/icon-32.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/teams.microsoft.com\/dl\/launcher\/launcher.html*",
                "https:\/\/teams.live.com\/dl\/launcher\/launcher.html*",
                "https:\/\/bluejeans.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}