Reduce Background Flicker
Prevent that annoying white flash between pages
Qu'est-ce que Reduce Background Flicker ?
Reduce Background Flicker est une extension Chrome développée par https://rileyjshaw.com, et sa fonction principale est "Prevent that annoying white flash between pages".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Reduce Background Flicker
Téléchargez les fichiers d'extension Reduce Background Flicker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Reduce Background Flicker |
ID | hdnedegfdlmgbabbgmnjnmmijfjeaiib |
URL Officiel | https://chromewebstore.google.com/detail/reduce-background-flicker/hdnedegfdlmgbabbgmnjnmmijfjeaiib |
Description | Prevent that annoying white flash between pages |
Taille du Fichier | 12.26 KB |
Nombre d'Installations | 123 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2015-11-23 |
Date de Publication | 2015-11-23 |
Évaluation | 3.00/5 Total 10 Évaluations |
Développeur | https://rileyjshaw.com |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |