Incognito Watcher for Hulu
Watch shows on a guest hulu account without leaving any traces.
Cos'è Incognito Watcher for Hulu?
Incognito Watcher for Hulu è un'estensione di Chrome sviluppata da Phaed, e la sua funzione principale è "Watch shows on a guest hulu account without leaving any traces.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Incognito Watcher for Hulu
Scarica i file di estensione Incognito Watcher for Hulu 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
Are you sharing someone's Hulu account? Are you tired of manually erasing your watched shows from the history? You're in luck. This extension will automatically remove the shows you watch from the hulu history as you watch. Effectively hiding your viewing activities. You can enable/disable the extension by clicking on the icon.
Informazioni di Base sull'Estensione
Nome | |
ID | idkhfpabjddfdlikcmaecgnfehpcjoco |
URL Ufficiale | https://chrome.google.com/webstore/detail/incognito-watcher-for-hul/idkhfpabjddfdlikcmaecgnfehpcjoco |
Descrizione | Watch shows on a guest hulu account without leaving any traces. |
Dimensione del File | 1.56 MB |
Conteggio Installazioni | 164 |
Versione Corrente | 1.5 |
Ultimo Aggiornamento | 2019-03-08 |
Data di Pubblicazione | 2019-03-08 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Phaed |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Incognito Watcher for Hulu", "description": "Watch shows on a guest hulu account without leaving any traces.", "version": "1.5", "background": { "scripts": [ "scripts\/background.js" ] }, "icons": { "19": "media\/icon.png", "38": "media\/icon38.png", "48": "media\/icon48.png", "128": "media\/icon128.png" }, "browser_action": { "default_icon": "media\/icon-on.png", "default_title": "Incognito Watcher" }, "permissions": [ "tabs", "activeTab", "storage", "*:\/\/*.hulu.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.hulu.com\/*" ], "js": [ "scripts\/hulu-script.js" ], "run_at": "document_end" } ], "externally_connectable": { "matches": [ "*:\/\/*.hulu.com\/*" ] } } |