Nightridr

Night mode for all your favorite popular websites. Nightridr automatically makes pages dimmer and colored for night-time viewing.

Что такое Nightridr?

Nightridr - это расширение Chrome, разработанное baker.ja.andrew, и его основная функция - "Night mode for all your favorite popular websites. Nightridr automatically makes pages dimmer and colored for night-time viewing.".

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

screenshot
screenshot

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

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

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

                        No more burning your eyes out at night. Nightridr enables a night version of popular websites. Suggestions for websites can be directed to [email protected]                    

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

Название Nightridr Nightridr
ID hkceklljogohacpdfdogdcjpcoonkolf
Официальный URL https://chrome.google.com/webstore/detail/nightridr/hkceklljogohacpdfdogdcjpcoonkolf
Описание Night mode for all your favorite popular websites. Nightridr automatically makes pages dimmer and colored for night-time viewing.
Размер файла 299 KB
Количество установок 107
Текущая Версия 1.0
Последнее Обновление 2016-01-20
Дата публикации 2016-01-20
Рейтинг 1.00/5 Всего 1 оценок
Разработчик baker.ja.andrew
Тип оплаты free
Официальный сайт расширения http://nightridr.andrewjbaker.me
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nightridr",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Night mode for all your favorite popular websites. Nightridr automatically makes pages dimmer and colored for night-time viewing.",
    "homepage_url": "http:\/\/nightridr.andrewjbaker.me",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "page action demo",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.google.com\/*",
                "*:\/\/*.craigslist.org\/*",
                "*:\/\/*.cnn.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}