Incognito Watcher for Hulu
Watch shows on a guest hulu account without leaving any traces.
Was ist Incognito Watcher for Hulu?
Incognito Watcher for Hulu ist eine Chrome-Erweiterung, die von Phaed entwickelt wurde, und ihr Hauptmerkmal ist "Watch shows on a guest hulu account without leaving any traces.".
Erweiterungsscreenshots
Incognito Watcher for Hulu-Erweiterungs-CRX-Datei herunterladen
Laden Sie Incognito Watcher for Hulu-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
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | idkhfpabjddfdlikcmaecgnfehpcjoco |
Offizielle URL | https://chrome.google.com/webstore/detail/incognito-watcher-for-hul/idkhfpabjddfdlikcmaecgnfehpcjoco |
Beschreibung | Watch shows on a guest hulu account without leaving any traces. |
Dateigröße | 1.56 MB |
Installationsanzahl | 164 |
Aktuelle Version | 1.5 |
Letztes Update | 2019-03-08 |
Veröffentlichungsdatum | 2019-03-08 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Phaed |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } } |