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…”。

擴展截圖

screenshot

下載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 Standby lb detector
ID gckammhfclijmkllchphepaacbkhcknp
官方網址 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*"
            ]
        }
    ]
}