darkhub

a crude google chrome extension to darken github.com

Что такое darkhub?

darkhub - это расширение Chrome, разработанное xero, и его основная функция - "a crude google chrome extension to darken github.com".

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

screenshot
screenshot

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

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

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

                        invert the colors of github.com

follow the project at: https://github.com/xero/darkhub

you can also install this theme with stylish: https://userstyles.org/styles/116810/darkhub-github-com

find more of my userstyles here: https://git.io/stylez                    

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

Название darkhub darkhub
ID dkjhglblnbkbllapljjhjjggnoijejdj
Официальный URL https://chrome.google.com/webstore/detail/darkhub/dkjhglblnbkbllapljjhjjggnoijejdj
Описание a crude google chrome extension to darken github.com
Размер файла 133 KB
Количество установок 125
Текущая Версия 1.1.1
Последнее Обновление 2017-03-12
Дата публикации 2017-03-12
Рейтинг 5.00/5 Всего 1 оценок
Разработчик xero
Тип оплаты free
Официальный сайт расширения http://git.io/darkhub
URL страницы помощи https://github.com/xero/darkhub/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "darkhub",
    "description": "a crude google chrome extension to darken github.com",
    "version": "1.1.1",
    "author": "xero harrison",
    "permissions": [
        "tabs",
        "",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "darkhub-16.png",
        "48": "darkhub-48.png",
        "128": "darkhub-128.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "js\/start.js"
            ],
            "matches": [
                "*:\/\/*.github.com\/*",
                "*:\/\/*.githubusercontent.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "js\/start.js",
        "css\/darkhub.min.css"
    ]
}