Munin dark theme

A simple plugin that gives Munin pages a dark theme.

Что такое Munin dark theme?

Munin dark theme - это расширение Chrome, разработанное okor, и его основная функция - "A simple plugin that gives Munin pages a dark theme.".

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

screenshot

Скачать файл CRX расширения Munin dark theme

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

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

                        The plugin will attempt to detect if the current page is one served up by Munin. If it's a Munin page, it will inject a small amount of CSS, effectively creating a dark theme for Munin.

Get the source on Github: https://github.com/okor/munin-dark-chrome-extension                    

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

Название Munin dark theme Munin dark theme
ID fgboabpjnnfofdmknkijjpaolikljolo
Официальный URL https://chromewebstore.google.com/detail/munin-dark-theme/fgboabpjnnfofdmknkijjpaolikljolo
Описание A simple plugin that gives Munin pages a dark theme.
Размер файла 13.98 KB
Количество установок 19
Текущая Версия 1.0
Последнее Обновление 2013-09-24
Дата публикации 2013-09-24
Рейтинг 5.00/5 Всего 2 оценок
Разработчик okor
Тип оплаты free
Официальный сайт расширения http://jasonormand.com/2013/09/22/a-dark-munin-theme/
URL страницы помощи https://github.com/okor/munin-dark-chrome-extension
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Munin dark theme",
    "description": "A simple plugin that gives Munin pages a dark theme.",
    "version": "1.0",
    "homepage_url": "http:\/\/jasonormand.com\/2013\/09\/22\/a-dark-munin-theme\/",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "munin-dark-theme.css"
    ],
    "content_scripts": [
        {
            "js": [
                "munin-dark-theme.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ]
}