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…

O que é Standby lb detector?

Standby lb detector é uma extensão do Chrome desenvolvida por Magnus Watn, e sua principal característica é "Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Standby lb detector

Baixe arquivos de extensão Standby lb detector no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Standby lb detector Standby lb detector
ID gckammhfclijmkllchphepaacbkhcknp
URL Oficial https://chromewebstore.google.com/detail/standby-lb-detector/gckammhfclijmkllchphepaacbkhcknp
Descrição Tired of making changes to the standby Big-IP by mistake? This extension detects when you log into a standby Big-IP and notifies…
Tamanho do Arquivo 7.41 KB
Contagem de Instalações 20
Versão Atual 2020.3.23
Última Atualização 2020-03-31
Data de Publicação 2020-03-25
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Magnus Watn
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/magnuswatn/standby-lb-detector
Idiomas Suportados 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*"
            ]
        }
    ]
}