AWS VPN Tab Closer
An extension to detect and close the authentication tab left open by AWS VPN
Co to jest AWS VPN Tab Closer?
AWS VPN Tab Closer to rozszerzenie Chrome opracowane przez TwoBadRobots, a jego główną funkcją jest „An extension to detect and close the authentication tab left open by AWS VPN”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia AWS VPN Tab Closer
Pobierz pliki rozszerzeń AWS VPN 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
When the AWS VPN clients resubmits your stored credentials it leaves a very annoying tab open in your browser, if you are AFK for a while you can come back to a window full of tabs. This extension will only activate for tabs using the URL http://127.0.0.1:35001 and it will close it as soon as the confirmation message is displayed. This will not affect the sign in process.
Podstawowe informacje o rozszerzeniu
Nazwa | AWS VPN Tab Closer |
ID | eeohkjpjmohadfbgaghdofdphnjhidfg |
Oficjalny URL | https://chromewebstore.google.com/detail/aws-vpn-tab-closer/eeohkjpjmohadfbgaghdofdphnjhidfg |
Opis | An extension to detect and close the authentication tab left open by AWS VPN |
Rozmiar pliku | 3.85 KB |
Liczba instalacji | 317 |
Aktualna Wersja | 0.1.0 |
Ostatnia Aktualizacja | 2023-02-24 |
Data Publikacji | 2023-02-16 |
Ocena | 4.25/5 Łącznie 4 Oceny |
Deweloper | TwoBadRobots |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/dougle/aws-vpn-tab-close |
Adres URL Strony Pomocy | https://github.com/dougle/aws-vpn-tab-close/issues |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AWS VPN Tab Closer", "version": "0.1.0", "description": "An extension to detect and close the authentication tab left open by AWS VPN", "background": { "service_worker": "scripts\/background.js" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "http:\/\/127.0.0.1:35001\/" ] } ] } |