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文件
下载Video Color Enhancer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } |