Reduce Background Flicker
Prevent that annoying white flash between pages
Co je Reduce Background Flicker?
Reduce Background Flicker je rozšíření Chrome vyvinuté https://rileyjshaw.com, a jeho hlavní funkcí je „Prevent that annoying white flash between pages“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Reduce Background Flicker
Stáhněte si soubory rozšíření Reduce Background Flicker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Reduce Background Flicker |
ID | hdnedegfdlmgbabbgmnjnmmijfjeaiib |
Oficiální URL | https://chromewebstore.google.com/detail/reduce-background-flicker/hdnedegfdlmgbabbgmnjnmmijfjeaiib |
Popis | Prevent that annoying white flash between pages |
Velikost souboru | 12.26 KB |
Počet instalací | 123 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2015-11-23 |
Datum Vydání | 2015-11-23 |
Hodnocení | 3.00/5 Celkem 10 Hodnocení |
Vývojář | https://rileyjshaw.com |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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 } |