HuluHoop
Skip Hulu's annoying welcome page.
Wat is HuluHoop?
HuluHoop is een Chrome-extensie ontwikkeld door Veyda92, en de belangrijkste functie is "Skip Hulu's annoying welcome page.".
Extensie Screenshots
Download het CRX-bestand van de extensie HuluHoop
Download HuluHoop-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | amhplafaigcapoieabchcjlnipnnpohj |
Officiële URL | https://chrome.google.com/webstore/detail/huluhoop/amhplafaigcapoieabchcjlnipnnpohj |
Beschrijving | Skip Hulu's annoying welcome page. |
Bestandsgrootte | 17.97 KB |
Aantal Installaties | 49 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2016-05-14 |
Publicatiedatum | 2016-05-14 |
Beoordeling | 4.63/5 Totaal 8 Beoordelingen |
Ontwikkelaar | Veyda92 |
Ondersteunde Talen | 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 } |