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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย Standby lb detector
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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*" ] } ] } |