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…
Wat is Standby lb detector?
Standby lb detector is een Chrome-extensie ontwikkeld door Magnus Watn, en de belangrijkste functie is "Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies…".
Extensie Screenshots
Download het CRX-bestand van de extensie Standby lb detector
Download Standby lb detector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Standby lb detector |
ID | gckammhfclijmkllchphepaacbkhcknp |
Officiële URL | https://chromewebstore.google.com/detail/standby-lb-detector/gckammhfclijmkllchphepaacbkhcknp |
Beschrijving | Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies… |
Bestandsgrootte | 7.41 KB |
Aantal Installaties | 20 |
Huidige Versie | 2020.3.23 |
Laatst Bijgewerkt | 2020-03-31 |
Publicatiedatum | 2020-03-25 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Magnus Watn |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/magnuswatn/standby-lb-detector |
Ondersteunde Talen | 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*" ] } ] } |