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 | 
| Eメール | [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
}  |  |