Reduce Background Flicker

Prevent that annoying white flash between pages

Reduce Background Flickerคืออะไร?

Reduce Background Flicker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://rileyjshaw.com และคุณลักษณะหลักของมันคือ "Prevent that annoying white flash between pages"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reduce Background Flicker

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Reduce Background Flicker Reduce Background Flicker
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
}