AWS VPN Tab Closer

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

Was ist AWS VPN Tab Closer?

AWS VPN Tab Closer ist eine Chrome-Erweiterung, die von TwoBadRobots entwickelt wurde, und ihr Hauptmerkmal ist "An extension to detect and close the authentication tab left open by AWS VPN".

Erweiterungsscreenshots

screenshot

AWS VPN Tab Closer-Erweiterungs-CRX-Datei herunterladen

Laden Sie AWS VPN Tab Closer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name AWS VPN Tab Closer AWS VPN Tab Closer
ID eeohkjpjmohadfbgaghdofdphnjhidfg
Offizielle URL https://chromewebstore.google.com/detail/aws-vpn-tab-closer/eeohkjpjmohadfbgaghdofdphnjhidfg
Beschreibung An extension to detect and close the authentication tab left open by AWS VPN
Dateigröße 3.85 KB
Installationsanzahl 317
Aktuelle Version 0.1.0
Letztes Update 2023-02-24
Veröffentlichungsdatum 2023-02-16
Bewertung 4.25/5 Insgesamt 4 Bewertungen
Entwickler TwoBadRobots
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/dougle/aws-vpn-tab-close
Hilfeseite URL https://github.com/dougle/aws-vpn-tab-close/issues
Unterstützte Sprachen 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\/"
            ]
        }
    ]
}