HuluHoop
Skip Hulu's annoying welcome page.
Qu'est-ce que HuluHoop ?
HuluHoop est une extension Chrome développée par Veyda92, et sa fonction principale est "Skip Hulu's annoying welcome page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension HuluHoop
Téléchargez les fichiers d'extension HuluHoop au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | amhplafaigcapoieabchcjlnipnnpohj |
URL Officiel | https://chrome.google.com/webstore/detail/huluhoop/amhplafaigcapoieabchcjlnipnnpohj |
Description | Skip Hulu's annoying welcome page. |
Taille du Fichier | 17.97 KB |
Nombre d'Installations | 49 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2016-05-14 |
Date de Publication | 2016-05-14 |
Évaluation | 4.63/5 Total 8 Évaluations |
Développeur | Veyda92 |
Langues Prises en Charge | 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 } |