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…
Co je Standby lb detector?
Standby lb detector je rozšíření Chrome vyvinuté Magnus Watn, a jeho hlavní funkcí je „Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies…“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Standby lb detector
Stáhněte si soubory rozšíření Standby lb detector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Standby lb detector |
ID | gckammhfclijmkllchphepaacbkhcknp |
Oficiální URL | https://chromewebstore.google.com/detail/standby-lb-detector/gckammhfclijmkllchphepaacbkhcknp |
Popis | Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies… |
Velikost souboru | 7.41 KB |
Počet instalací | 20 |
Aktuální Verze | 2020.3.23 |
Poslední Aktualizace | 2020-03-31 |
Datum Vydání | 2020-03-25 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | Magnus Watn |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/magnuswatn/standby-lb-detector |
Podporované Jazyky | 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*" ] } ] } |