Reduce Background Flicker
Prevent that annoying white flash between pages
什么是Reduce Background Flicker?
Reduce Background Flicker是由https://rileyjshaw.com开发的Chrome扩展程序,该扩展的主要功能是“Prevent that annoying white flash between pages”。
扩展截图
下载Reduce Background Flicker扩展crx文件
下载Reduce Background Flicker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | hdnedegfdlmgbabbgmnjnmmijfjeaiib |
| 官方URL | https://chromewebstore.google.com/detail/reduce-background-flicker/hdnedegfdlmgbabbgmnjnmmijfjeaiib |
| 简介 | Prevent that annoying white flash between pages |
| 文件大小 | 12.26 KB |
| 安装次数 | 123 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2015-11-23 |
| 上架时间 | 2015-11-23 |
| 评分 | 3.00/5 共10次评分 |
| 开发者 | https://rileyjshaw.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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
} | |