Localhost detector

Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.

Что такое Localhost detector?

Localhost detector - это расширение Chrome, разработанное milan.chheda, и его основная функция - "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.".

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

screenshot

Скачать файл CRX расширения Localhost detector

Скачайте файлы расширений Localhost detector в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        It checks the following in the URL and adds the red banner:
1. "localhost"
2. "127.0.0.1"
3. "local."
4. ".local"
5. "staging."
6. ".stg"
7. "dev."
8. "test."
9. ".test"


Let me know, if you want to add any other string that should match and show the red banner.                    

Основная информация о расширении

Название Localhost detector Localhost detector
ID nkjfadmbkfhmkkkbgghelmjbdaenbngh
Официальный URL https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh
Описание Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
Размер файла 37.79 KB
Количество установок 302
Текущая Версия 0.3
Последнее Обновление 2019-04-25
Дата публикации 2019-04-25
Рейтинг 4.00/5 Всего 5 оценок
Разработчик milan.chheda
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Localhost detector",
    "description": "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.",
    "version": "0.3",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "local.js"
            ],
            "css": [
                "local.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ]
}