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…
Qu'est-ce que Standby lb detector ?
Standby lb detector est une extension Chrome développée par Magnus Watn, et sa fonction principale est "Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Standby lb detector
Téléchargez les fichiers d'extension Standby lb detector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Standby lb detector |
ID | gckammhfclijmkllchphepaacbkhcknp |
URL Officiel | https://chromewebstore.google.com/detail/standby-lb-detector/gckammhfclijmkllchphepaacbkhcknp |
Description | Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies… |
Taille du Fichier | 7.41 KB |
Nombre d'Installations | 20 |
Version Actuelle | 2020.3.23 |
Dernière Mise à Jour | 2020-03-31 |
Date de Publication | 2020-03-25 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Magnus Watn |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/magnuswatn/standby-lb-detector |
Langues Prises en Charge | 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*" ] } ] } |