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
官方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*"
            ]
        }
    ]
}