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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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 } |