HuluHoop

Skip Hulu's annoying welcome page.

Apa itu HuluHoop?

HuluHoop adalah ekstensi Chrome yang dikembangkan oleh Veyda92, dan fitur utamanya adalah "Skip Hulu's annoying welcome page.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi HuluHoop

Unduh file ekstensi HuluHoop 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

                        Stop jumping through hoops just to enjoy your shows on Hulu. This simple plugin bypasses the welcome screen that tries to sell you on the trial every single time you visit the site.                    

Informasi Dasar Ekstensi

Nama HuluHoop HuluHoop
ID amhplafaigcapoieabchcjlnipnnpohj
URL Resmi https://chrome.google.com/webstore/detail/huluhoop/amhplafaigcapoieabchcjlnipnnpohj
Deskripsi Skip Hulu's annoying welcome page.
Ukuran File 17.97 KB
Jumlah Instalasi 49
Versi Saat Ini 1.0.2
Terakhir Diperbarui 2016-05-14
Tanggal Publikasi 2016-05-14
Penilaian 4.63/5 Total 8 Penilaian
Pengembang Veyda92
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HuluHoop",
    "description": "Skip Hulu's annoying welcome page.",
    "version": "1.0.2",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "HuluHoop"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.hulu.com\/welcome*",
                "https:\/\/www.hulu.com\/welcome*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}