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 |
| 官方網址 | 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
} | |