Standby lb detector

Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies…

Was ist Standby lb detector?

Standby lb detector ist eine Chrome-Erweiterung, die von Magnus Watn entwickelt wurde, und ihr Hauptmerkmal ist "Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies…".

Erweiterungsscreenshots

screenshot

Standby lb detector-Erweiterungs-CRX-Datei herunterladen

Laden Sie Standby lb detector-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

                        Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies you by making the page grey and ugly. Can of course be temporary disabled, if you are in fact going to make changes to the standby node.

Inspired by the extension "Ugly HTTP" by lgarron.                    

Grundlegende Informationen zur Erweiterung

Name Standby lb detector Standby lb detector
ID gckammhfclijmkllchphepaacbkhcknp
Offizielle URL https://chromewebstore.google.com/detail/standby-lb-detector/gckammhfclijmkllchphepaacbkhcknp
Beschreibung Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies…
Dateigröße 7.41 KB
Installationsanzahl 20
Aktuelle Version 2020.3.23
Letztes Update 2020-03-31
Veröffentlichungsdatum 2020-03-25
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Magnus Watn
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/magnuswatn/standby-lb-detector
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Standby lb detector",
    "version": "2020.3.23",
    "author": "Magnus Watn",
    "manifest_version": 2,
    "icons": {
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "permissions": [
        "https:\/\/*\/",
        "webRequest",
        "storage"
    ],
    "page_action": {
        "default_icon": {
            "64": "icon64.png"
        }
    },
    "omnibox": {
        "keyword": "b"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ],
            "css": [
                "standby-lb-detector-css.css"
            ],
            "matches": [
                "https:\/\/*\/xui\/"
            ]
        },
        {
            "run_at": "document_idle",
            "js": [
                "contentScriptLoginPage.js"
            ],
            "matches": [
                "https:\/\/*\/tmui\/login.jsp*"
            ]
        }
    ]
}