Reduce Background Flicker
Prevent that annoying white flash between pages
Reduce Background Flicker là gì?
Reduce Background Flicker là một tiện ích mở rộng Chrome được phát triển bởi https://rileyjshaw.com, và tính năng chính của nó là "Prevent that annoying white flash between pages".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Reduce Background Flicker
Tải xuống các tệp mở rộng Reduce Background Flicker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Reduce Background Flicker |
ID | hdnedegfdlmgbabbgmnjnmmijfjeaiib |
URL Chính Thức | https://chromewebstore.google.com/detail/reduce-background-flicker/hdnedegfdlmgbabbgmnjnmmijfjeaiib |
Mô tả | Prevent that annoying white flash between pages |
Kích Thước Tệp | 12.26 KB |
Số Lần Cài Đặt | 123 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2015-11-23 |
Ngày Phát Hành | 2015-11-23 |
Đánh Giá | 3.00/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | https://rileyjshaw.com |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |