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…".

Снимки экрана расширения

screenshot

Скачать файл 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 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*"
            ]
        }
    ]
}