Video Color Enhancer
Video Color Enhancer allows to enhance colors of video by settings brightness, saturation, contract etc.
Cos'è Video Color Enhancer?
Video Color Enhancer è un'estensione di Chrome sviluppata da 010pixel, e la sua funzione principale è "Video Color Enhancer allows to enhance colors of video by settings brightness, saturation, contract etc.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Video Color Enhancer
Scarica i file di estensione Video Color Enhancer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Video Color Enhancer |
ID | ahfioiamcnpgmfecmmnecajookbmgcdp |
URL Ufficiale | https://chromewebstore.google.com/detail/video-color-enhancer/ahfioiamcnpgmfecmmnecajookbmgcdp |
Descrizione | Video Color Enhancer allows to enhance colors of video by settings brightness, saturation, contract etc. |
Dimensione del File | 153 KB |
Conteggio Installazioni | 8,529 |
Versione Corrente | 1.3.0 |
Ultimo Aggiornamento | 2020-05-19 |
Data di Pubblicazione | 2020-05-18 |
Valutazione | 4.95/5 Totale 38 Valutazioni |
Sviluppatore | 010pixel |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://privacy.010pixel.com/chrome |
Lingue Supportate | 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" } } |