Video Color Enhancer
Video Color Enhancer allows to enhance colors of video by settings brightness, saturation, contract etc.
Video Color Enhancer란 무엇입니까?
Video Color Enhancer은(는) 010pixel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Video Color Enhancer allows to enhance colors of video by settings brightness, saturation, contract etc."입니다.
확장 프로그램 스크린샷
Video Color Enhancer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Video Color Enhancer allows to enhance colors of video by settings brightness, saturation, contract etc. FEATURES: - Adjust Brightness, Saturation, Contrast, Sepia TROUBLESHOOTING: - In case the settings do not applied, try again after refreshing the page Support this extension: https://donorbox.org/to-sustain-building-google-chrome-extensions v.1.0.0: (2019/09/29) Initial upload v.1.0.1: (2019/09/30) - Restricted domains to youtube.com, netflix.com, dailymotion.com, vimeo.com - Solved issue of setting not saved when closing extension v.1.1.0: (2019/10/05) - Made the extension available for most of the domains - Reduced Blur settings v.1.2.0: (2019/10/05) - Update all videos in the page v.1.3.0: (2020/05/14) - Added: Invert color option
확장 프로그램 기본 정보
이름 | Video Color Enhancer |
ID | ahfioiamcnpgmfecmmnecajookbmgcdp |
공식 URL | https://chromewebstore.google.com/detail/video-color-enhancer/ahfioiamcnpgmfecmmnecajookbmgcdp |
설명 | Video Color Enhancer allows to enhance colors of video by settings brightness, saturation, contract etc. |
파일 크기 | 153 KB |
설치 횟수 | 8,529 |
현재 버전 | 1.3.0 |
최근 업데이트 | 2020-05-19 |
출시 날짜 | 2020-05-18 |
평점 | 4.95/5 총 38 개의 평점 |
개발자 | 010pixel |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://privacy.010pixel.com/chrome |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Video Color Enhancer", "short_name": "video-color-enhancer", "description": "Video Color Enhancer allows to enhance colors of video by settings brightness, saturation, contract etc.", "version": "1.3.0", "author": "010 Pixel", "permissions": [ "activeTab", "storage", "tabs", "*:\/\/*\/*" ], "browser_action": { "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png" }, "default_popup": "index.html", "default_title": "Video Color Enhancer" }, "background": { "scripts": [ "background\/background.js", "background\/loadscript.js" ] }, "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "js": [ "background\/myapp.js" ], "run_at": "document_end" } ], "icons": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "96": "images\/icon96.png", "128": "images\/icon128.png" } } |