AWS VPN Tab Closer

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

Hvad er AWS VPN Tab Closer?

AWS VPN Tab Closer er en Chrome-udvidelse udviklet af TwoBadRobots, og dens hovedfunktion er "An extension to detect and close the authentication tab left open by AWS VPN".

Udvidelsesskærmbilleder

screenshot

Download AWS VPN Tab Closer-udvidelses-CRX-fil

Download AWS VPN Tab Closer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn AWS VPN Tab Closer AWS VPN Tab Closer
ID eeohkjpjmohadfbgaghdofdphnjhidfg
Officiel URL https://chromewebstore.google.com/detail/aws-vpn-tab-closer/eeohkjpjmohadfbgaghdofdphnjhidfg
Beskrivelse An extension to detect and close the authentication tab left open by AWS VPN
Filstørrelse 3.85 KB
Antal Installationer 317
Nuværende Version 0.1.0
Senest Opdateret 2023-02-24
Udgivelsesdato 2023-02-16
Bedømmelse 4.25/5 Samlet 4 Bedømmelser
Udvikler TwoBadRobots
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/dougle/aws-vpn-tab-close
Hjælpeside-URL https://github.com/dougle/aws-vpn-tab-close/issues
Understøttede Sprog 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\/"
            ]
        }
    ]
}