HuluHoop
Skip Hulu's annoying welcome page.
Hvad er HuluHoop?
HuluHoop er en Chrome-udvidelse udviklet af Veyda92, og dens hovedfunktion er "Skip Hulu's annoying welcome page.".
Udvidelsesskærmbilleder
Download HuluHoop-udvidelses-CRX-fil
Download HuluHoop-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | amhplafaigcapoieabchcjlnipnnpohj |
Officiel URL | https://chrome.google.com/webstore/detail/huluhoop/amhplafaigcapoieabchcjlnipnnpohj |
Beskrivelse | Skip Hulu's annoying welcome page. |
Filstørrelse | 17.97 KB |
Antal Installationer | 49 |
Nuværende Version | 1.0.2 |
Senest Opdateret | 2016-05-14 |
Udgivelsesdato | 2016-05-14 |
Bedømmelse | 4.63/5 Samlet 8 Bedømmelser |
Udvikler | Veyda92 |
Understøttede Sprog | 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 } |