Reduce Background Flicker
Prevent that annoying white flash between pages
O que é Reduce Background Flicker?
Reduce Background Flicker é uma extensão do Chrome desenvolvida por https://rileyjshaw.com, e sua principal característica é "Prevent that annoying white flash between pages".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Reduce Background Flicker
Baixe arquivos de extensão Reduce Background Flicker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Reduce Background Flicker |
ID | hdnedegfdlmgbabbgmnjnmmijfjeaiib |
URL Oficial | https://chromewebstore.google.com/detail/reduce-background-flicker/hdnedegfdlmgbabbgmnjnmmijfjeaiib |
Descrição | Prevent that annoying white flash between pages |
Tamanho do Arquivo | 12.26 KB |
Contagem de Instalações | 123 |
Versão Atual | 1.0.0 |
Última Atualização | 2015-11-23 |
Data de Publicação | 2015-11-23 |
Classificação | 3.00/5 Total de 10 Avaliações |
Desenvolvedor | https://rileyjshaw.com |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } |