AWS VPN Tab Closer
An extension to detect and close the authentication tab left open by AWS VPN
Co je AWS VPN Tab Closer?
AWS VPN Tab Closer je rozšíření Chrome vyvinuté TwoBadRobots, a jeho hlavní funkcí je „An extension to detect and close the authentication tab left open by AWS VPN“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření AWS VPN Tab Closer
Stáhněte si soubory rozšíření AWS VPN Tab Closer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | AWS VPN Tab Closer |
ID | eeohkjpjmohadfbgaghdofdphnjhidfg |
Oficiální URL | https://chromewebstore.google.com/detail/aws-vpn-tab-closer/eeohkjpjmohadfbgaghdofdphnjhidfg |
Popis | An extension to detect and close the authentication tab left open by AWS VPN |
Velikost souboru | 3.85 KB |
Počet instalací | 317 |
Aktuální Verze | 0.1.0 |
Poslední Aktualizace | 2023-02-24 |
Datum Vydání | 2023-02-16 |
Hodnocení | 4.25/5 Celkem 4 Hodnocení |
Vývojář | TwoBadRobots |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/dougle/aws-vpn-tab-close |
URL Stránky Nápovědy | https://github.com/dougle/aws-vpn-tab-close/issues |
Podporované Jazyky | 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\/" ] } ] } |