Hulu Contrast

This extension will improve readability on the new Hulu website

Apa itu Hulu Contrast?

Hulu Contrast adalah ekstensi Chrome yang dikembangkan oleh voodoogiant, dan fitur utamanya adalah "This extension will improve readability on the new Hulu website".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Hulu Contrast

Unduh file ekstensi Hulu Contrast dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Hulu Contrast Hulu Contrast
ID ekkeldiiibmhgkcdnibefefignhaoibb
URL Resmi https://chrome.google.com/webstore/detail/hulu-contrast/ekkeldiiibmhgkcdnibefefignhaoibb
Deskripsi This extension will improve readability on the new Hulu website
Ukuran File 4.1 KB
Jumlah Instalasi 21
Versi Saat Ini 1.0
Terakhir Diperbarui 2018-05-18
Tanggal Publikasi 2018-05-18
Pengembang voodoogiant
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}