Hulu Contrast

This extension will improve readability on the new Hulu website

Hulu Contrastとは何ですか?

Hulu Contrastはvoodoogiantによって開発されたChromeの拡張機能で、その主な機能は「This extension will improve readability on the new Hulu website」です。

拡張機能のスクリーンショット

screenshot

Hulu Contrast拡張機能のCRXファイルをダウンロード

Hulu Contrast拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Hulu Contrast Hulu Contrast
ID ekkeldiiibmhgkcdnibefefignhaoibb
公式URL https://chrome.google.com/webstore/detail/hulu-contrast/ekkeldiiibmhgkcdnibefefignhaoibb
説明 This extension will improve readability on the new Hulu website
ファイルサイズ 4.1 KB
インストール数 21
現在のバージョン 1.0
最終更新日 2018-05-18
公開日 2018-05-18
開発者 voodoogiant
支払い方法 free
対応言語 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\/*"
            ]
        }
    ]
}