Reduce Background Flicker

Prevent that annoying white flash between pages

Что такое Reduce Background Flicker?

Reduce Background Flicker - это расширение Chrome, разработанное https://rileyjshaw.com, и его основная функция - "Prevent that annoying white flash between pages".

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

screenshot

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

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

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

                        Switching between dark pages on Chrome can sometimes lead to a blinding flash of white. This extension tries to preserve background color between page loads, if possible.

For the real Lords of Darkness out there, setting a custom user stylesheet to your preferred color (https://code.google.com/p/chromium/issues/detail?id=1373#c261) will probably be more effective than this extension. The same trick applies to Firefox.

Icon created by Anand A Nair from the Noun Project, CC.                    

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

Название Reduce Background Flicker Reduce Background Flicker
ID hdnedegfdlmgbabbgmnjnmmijfjeaiib
Официальный URL https://chromewebstore.google.com/detail/reduce-background-flicker/hdnedegfdlmgbabbgmnjnmmijfjeaiib
Описание Prevent that annoying white flash between pages
Размер файла 12.26 KB
Количество установок 123
Текущая Версия 1.0.0
Последнее Обновление 2015-11-23
Дата публикации 2015-11-23
Рейтинг 3.00/5 Всего 10 оценок
Разработчик https://rileyjshaw.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reduce Background Flicker",
    "short_name": "Reduce Flicker",
    "description": "Prevent that annoying white flash between pages",
    "author": "rileyjshaw",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "version": "1.0.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "all_frames": false,
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}