HuluHoop

Skip Hulu's annoying welcome page.

Was ist HuluHoop?

HuluHoop ist eine Chrome-Erweiterung, die von Veyda92 entwickelt wurde, und ihr Hauptmerkmal ist "Skip Hulu's annoying welcome page.".

Erweiterungsscreenshots

screenshot

HuluHoop-Erweiterungs-CRX-Datei herunterladen

Laden Sie HuluHoop-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name HuluHoop HuluHoop
ID amhplafaigcapoieabchcjlnipnnpohj
Offizielle URL https://chrome.google.com/webstore/detail/huluhoop/amhplafaigcapoieabchcjlnipnnpohj
Beschreibung Skip Hulu's annoying welcome page.
Dateigröße 17.97 KB
Installationsanzahl 49
Aktuelle Version 1.0.2
Letztes Update 2016-05-14
Veröffentlichungsdatum 2016-05-14
Bewertung 4.63/5 Insgesamt 8 Bewertungen
Entwickler Veyda92
Unterstützte Sprachen 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
}