AWS VPN Tab Closer
An extension to detect and close the authentication tab left open by AWS VPN
¿Qué es AWS VPN Tab Closer?
AWS VPN Tab Closer es una extensión de Chrome desarrollada por TwoBadRobots, y su función principal es "An extension to detect and close the authentication tab left open by AWS VPN".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión AWS VPN Tab Closer
Descarga archivos de extensión AWS VPN Tab Closer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | AWS VPN Tab Closer |
ID | eeohkjpjmohadfbgaghdofdphnjhidfg |
URL Oficial | https://chromewebstore.google.com/detail/aws-vpn-tab-closer/eeohkjpjmohadfbgaghdofdphnjhidfg |
Descripción | An extension to detect and close the authentication tab left open by AWS VPN |
Tamaño del Archivo | 3.85 KB |
Cantidad de Instalaciones | 317 |
Versión Actual | 0.1.0 |
Última Actualización | 2023-02-24 |
Fecha de Publicación | 2023-02-16 |
Calificación | 4.25/5 Total de 4 Calificaciones |
Desarrollador | TwoBadRobots |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/dougle/aws-vpn-tab-close |
URL de la Página de Ayuda | https://github.com/dougle/aws-vpn-tab-close/issues |
Idiomas Soportados | 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\/" ] } ] } |