Ugly HTTP

Makes HTTP pages conspicuous.

Что такое Ugly HTTP?

Ugly HTTP - это расширение Chrome, разработанное lgarron, и его основная функция - "Makes HTTP pages conspicuous.".

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

screenshot

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

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

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

                        Makes HTTP pages conspicous.

By default, HTTP pages are faded. Multiple themes are available:

- faded
- grayscale
- sepia
- wide-blur
- overexposed
- red
- blue
- flip-hue                    

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

Название Ugly HTTP Ugly HTTP
ID mlneofdamjbcmahdcjjbmbjomedanhal
Официальный URL https://chromewebstore.google.com/detail/ugly-http/mlneofdamjbcmahdcjjbmbjomedanhal
Описание Makes HTTP pages conspicuous.
Размер файла 14.96 KB
Количество установок 25
Текущая Версия 1.2.0
Последнее Обновление 2018-08-29
Дата публикации 2018-08-28
Рейтинг 5.00/5 Всего 2 оценок
Разработчик lgarron
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/lgarron/ugly-http-extension
URL страницы помощи https://github.com/lgarron/ugly-http-extension
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ugly HTTP",
    "description": "Makes HTTP pages conspicuous.",
    "author": "Lucas Garron (@lgarron)",
    "version": "1.2.0",
    "icons": {
        "128": "images\/extensionIcon-128px.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "browser_action": {
        "default_icon": {
            "128": "images\/extensionIcon-128px.png"
        },
        "default_popup": "popup.html",
        "default_title": "Undo"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "ugly.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "command.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "commands": {
        "go-secure": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Command+S"
            },
            "description": "Switch to HTTPS"
        }
    }
}