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 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…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Standby lb detector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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*" ] } ] } |