Github dark theme

This extension provides a simple dark theme for github.com

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

Github dark theme - это расширение Chrome, разработанное benrlodge, и его основная функция - "This extension provides a simple dark theme for github.com".

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

screenshot

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

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

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

                        This extension provides a simple dark theme for github.com as an alternative to the default light theme.                    

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

Название Github dark theme Github dark theme
ID llhodmljacflfmfdhpfkjlohlfgflhga
Официальный URL https://chrome.google.com/webstore/detail/github-dark-theme/llhodmljacflfmfdhpfkjlohlfgflhga
Описание This extension provides a simple dark theme for github.com
Размер файла 80.86 KB
Количество установок 38
Текущая Версия 1.0
Последнее Обновление 2015-01-17
Дата публикации 2015-01-17
Рейтинг 2.00/5 Всего 4 оценок
Разработчик benrlodge
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github dark theme",
    "description": "This extension provides a simple dark theme for github.com",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*",
                "https:\/\/www.github.com\/*\/*"
            ],
            "css": [
                "darktheme.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}