WhiteBuster
Busting whites since 2017
WhiteBuster란 무엇입니까?
WhiteBuster은(는) kofifus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Busting whites since 2017"입니다.
확장 프로그램 스크린샷
WhiteBuster 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
WhiteBuster will do it's best to turn all white backgrounds on the page to nicer eye -friendly colors ... - Converts all background-color of rgb/a(255,255,255), rgb/a(254,254,254) to selected color preserving opacity - does it's best to deal with transparent items, iframes and runtime created elements Caveats: - White background images cannot be transformed - Badly coded pages that run code depending on background-color being white may break. (I haven't found any so far ...) Repo: - https://github.com/kofifus/WhiteBuster Support: - Please post an issue at the repo
확장 프로그램 기본 정보
이름 | WhiteBuster |
ID | kkgacobcjapebahjhkabbkacbpmddeco |
공식 URL | https://chromewebstore.google.com/detail/whitebuster/kkgacobcjapebahjhkabbkacbpmddeco |
설명 | Busting whites since 2017 |
파일 크기 | 23.04 KB |
설치 횟수 | 1,171 |
현재 버전 | 1.4.7 |
최근 업데이트 | 2017-09-14 |
출시 날짜 | 2017-09-14 |
평점 | 4.57/5 총 14 개의 평점 |
개발자 | kofifus |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/kofifus/WhiteBuster |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WhiteBuster", "short_name": "WhiteBuster", "version": "1.4.7", "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApQeWqigHEj9fTGCq1lIGGTpTsgTURJ7ErdEBCD\/eTy5uTic++YMpnbgXWDUsRAqr14NKQUiU4WKzhbj4c0ROBOxHcppRxoeUFvXPBagWcb1mOR8xqrJooBKtab\/k9gZW1OOzu5YkCCkQB+jMkdSmpkT5WB1bNtBJXc1e9LQtay5vtruXck9c98RUtBlbHx\/oepLWAzySNXPlfywvhC4Es0sMoOeN6SdnesoIHFu2b3lBfSmbw6MZjjs2vmCdLDAGCGMDGvinSBAAC5Eo4+Bf+HlGgrOEmrsk79KjlVEoMR7GXUqXnK\/LimR6U8UpX9aCX9njvmyt0sU6u5dgIUbPRwIDAQAB", "description": "Busting whites since 2017", "browser_action": { "default_icon": "whitebuster128.png", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "whitebuster.js" ], "css": [ "whitebuster.css" ], "run_at": "document_start", "matches": [ "*:\/\/*\/*" ], "all_frames": true, "match_about_blank": true } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "whitebuster16.png", "48": "whitebuster48.png", "128": "whitebuster128.png" } } |