HuluHoop

Skip Hulu's annoying welcome page.

Cos'è HuluHoop?

HuluHoop è un'estensione di Chrome sviluppata da Veyda92, e la sua funzione principale è "Skip Hulu's annoying welcome page.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione HuluHoop

Scarica i file di estensione HuluHoop 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

                        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.                    

Informazioni di Base sull'Estensione

Nome HuluHoop HuluHoop
ID amhplafaigcapoieabchcjlnipnnpohj
URL Ufficiale https://chrome.google.com/webstore/detail/huluhoop/amhplafaigcapoieabchcjlnipnnpohj
Descrizione Skip Hulu's annoying welcome page.
Dimensione del File 17.97 KB
Conteggio Installazioni 49
Versione Corrente 1.0.2
Ultimo Aggiornamento 2016-05-14
Data di Pubblicazione 2016-05-14
Valutazione 4.63/5 Totale 8 Valutazioni
Sviluppatore Veyda92
Lingue Supportate 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
}