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 là gì?
Standby lb detector là một tiện ích mở rộng Chrome được phát triển bởi Magnus Watn, và tính năng chính của nó là "Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Standby lb detector
Tải xuống các tệp mở rộng Standby lb detector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Standby lb detector |
ID | gckammhfclijmkllchphepaacbkhcknp |
URL Chính Thức | https://chromewebstore.google.com/detail/standby-lb-detector/gckammhfclijmkllchphepaacbkhcknp |
Mô tả | Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies… |
Kích Thước Tệp | 7.41 KB |
Số Lần Cài Đặt | 20 |
Phiên Bản Hiện Tại | 2020.3.23 |
Cập Nhật Lần Cuối | 2020-03-31 |
Ngày Phát Hành | 2020-03-25 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Magnus Watn |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/magnuswatn/standby-lb-detector |
Ngôn Ngữ Được Hỗ Trợ | 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*" ] } ] } |