Hulu Contrast
This extension will improve readability on the new Hulu website
What is Hulu Contrast?
Hulu Contrast is a Chrome extension developed by voodoogiant, and its main feature is "This extension will improve readability on the new Hulu website".
Extension Screenshots
Download Hulu Contrast Extension CRX File
Download Hulu Contrast extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is a simple extension that adds some styling to the new Hulu website, which makes text more readable by using text shadow and darker backgrounds.
Extension Basic Information
Name | |
ID | ekkeldiiibmhgkcdnibefefignhaoibb |
Official URL | https://chrome.google.com/webstore/detail/hulu-contrast/ekkeldiiibmhgkcdnibefefignhaoibb |
Description | This extension will improve readability on the new Hulu website |
File Size | 4.1 KB |
Installation Count | 21 |
Current Version | 1.0 |
Last Updated | 2018-05-18 |
Publish Date | 2018-05-18 |
Developer | voodoogiant |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hulu Contrast", "description": "This extension will improve readability on the new Hulu website", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ], "content_scripts": [ { "css": [ "hulu_contrast.css" ], "js": [ "hulu_contrast.js" ], "matches": [ "https:\/\/beta.hulu.com\/*", "https:\/\/new.hulu.com\/*" ] } ] } |