AWS VPN Tab Closer

An extension to detect and close the authentication tab left open by AWS VPN

O que é AWS VPN Tab Closer?

AWS VPN Tab Closer é uma extensão do Chrome desenvolvida por TwoBadRobots, e sua principal característica é "An extension to detect and close the authentication tab left open by AWS VPN".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão AWS VPN Tab Closer

Baixe arquivos de extensão AWS VPN Tab Closer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome AWS VPN Tab Closer AWS VPN Tab Closer
ID eeohkjpjmohadfbgaghdofdphnjhidfg
URL Oficial https://chromewebstore.google.com/detail/aws-vpn-tab-closer/eeohkjpjmohadfbgaghdofdphnjhidfg
Descrição An extension to detect and close the authentication tab left open by AWS VPN
Tamanho do Arquivo 3.85 KB
Contagem de Instalações 317
Versão Atual 0.1.0
Última Atualização 2023-02-24
Data de Publicação 2023-02-16
Classificação 4.25/5 Total de 4 Avaliações
Desenvolvedor TwoBadRobots
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/dougle/aws-vpn-tab-close
URL da Página de Ajuda https://github.com/dougle/aws-vpn-tab-close/issues
Idiomas Suportados 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\/"
            ]
        }
    ]
}