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…

Τι είναι το Standby lb detector;

Το Standby lb detector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Magnus Watn, και η κύρια λειτουργία του είναι "Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies…".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Standby lb detector

Λήψη αρχείων επέκτασης Standby lb detector σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Standby lb detector Standby lb detector
ID gckammhfclijmkllchphepaacbkhcknp
Επίσημο URL https://chromewebstore.google.com/detail/standby-lb-detector/gckammhfclijmkllchphepaacbkhcknp
Περιγραφή Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies…
Μέγεθος Αρχείου 7.41 KB
Αριθμός Εγκαταστάσεων 20
Τρέχουσα Έκδοση 2020.3.23
Τελευταία Ενημέρωση 2020-03-31
Ημερομηνία Δημοσίευσης 2020-03-25
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Magnus Watn
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/magnuswatn/standby-lb-detector
Υποστηριζόμενες Γλώσσες 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*"
            ]
        }
    ]
}