Redirect Tab Closer
This extension automatically closes the launched window for Bluejeans/Zoom meetings + Slack URLs.
Co to jest Redirect Tab Closer?
Redirect Tab Closer to rozszerzenie Chrome opracowane przez erictdeveloper, a jego główną funkcją jest „This extension automatically closes the launched window for Bluejeans/Zoom meetings + Slack URLs.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Redirect Tab Closer
Pobierz pliki rozszerzeń Redirect Tab Closer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Redirect Tab Closer |
ID | fdffoepgfafohjnlmdeaekigejifenpd |
Oficjalny URL | https://chromewebstore.google.com/detail/redirect-tab-closer/fdffoepgfafohjnlmdeaekigejifenpd |
Opis | This extension automatically closes the launched window for Bluejeans/Zoom meetings + Slack URLs. |
Rozmiar pliku | 38.37 KB |
Liczba instalacji | 587 |
Aktualna Wersja | 0.3 |
Ostatnia Aktualizacja | 2021-02-16 |
Data Publikacji | 2021-02-15 |
Ocena | 4.83/5 Łącznie 6 Oceny |
Deweloper | erictdeveloper |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ethirolle/redirect-tab-closer |
Obsługiwane Języki | 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" ] } ] } |