Reduce Background Flicker

Prevent that annoying white flash between pages

Co to jest Reduce Background Flicker?

Reduce Background Flicker to rozszerzenie Chrome opracowane przez https://rileyjshaw.com, a jego główną funkcją jest „Prevent that annoying white flash between pages”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Reduce Background Flicker

Pobierz pliki rozszerzeń Reduce Background Flicker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Reduce Background Flicker Reduce Background Flicker
ID hdnedegfdlmgbabbgmnjnmmijfjeaiib
Oficjalny URL https://chromewebstore.google.com/detail/reduce-background-flicker/hdnedegfdlmgbabbgmnjnmmijfjeaiib
Opis Prevent that annoying white flash between pages
Rozmiar pliku 12.26 KB
Liczba instalacji 123
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2015-11-23
Data Publikacji 2015-11-23
Ocena 3.00/5 Łącznie 10 Oceny
Deweloper https://rileyjshaw.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}