Reduce Background Flicker
Prevent that annoying white flash between pages
¿Qué es Reduce Background Flicker?
Reduce Background Flicker es una extensión de Chrome desarrollada por https://rileyjshaw.com, y su función principal es "Prevent that annoying white flash between pages".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Reduce Background Flicker
Descarga archivos de extensión Reduce Background Flicker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Reduce Background Flicker |
ID | hdnedegfdlmgbabbgmnjnmmijfjeaiib |
URL Oficial | https://chromewebstore.google.com/detail/reduce-background-flicker/hdnedegfdlmgbabbgmnjnmmijfjeaiib |
Descripción | Prevent that annoying white flash between pages |
Tamaño del Archivo | 12.26 KB |
Cantidad de Instalaciones | 123 |
Versión Actual | 1.0.0 |
Última Actualización | 2015-11-23 |
Fecha de Publicación | 2015-11-23 |
Calificación | 3.00/5 Total de 10 Calificaciones |
Desarrollador | https://rileyjshaw.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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 } |