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によって開発された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…」です。
拡張機能のスクリーンショット
Standby lb detector拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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*" ] } ] } |