Incognito Watcher for Hulu
Watch shows on a guest hulu account without leaving any traces.
Apa itu Incognito Watcher for Hulu?
Incognito Watcher for Hulu adalah ekstensi Chrome yang dikembangkan oleh Phaed, dan fitur utamanya adalah "Watch shows on a guest hulu account without leaving any traces.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Incognito Watcher for Hulu
Unduh file ekstensi Incognito Watcher for Hulu dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | idkhfpabjddfdlikcmaecgnfehpcjoco |
URL Resmi | https://chrome.google.com/webstore/detail/incognito-watcher-for-hul/idkhfpabjddfdlikcmaecgnfehpcjoco |
Deskripsi | Watch shows on a guest hulu account without leaving any traces. |
Ukuran File | 1.56 MB |
Jumlah Instalasi | 164 |
Versi Saat Ini | 1.5 |
Terakhir Diperbarui | 2019-03-08 |
Tanggal Publikasi | 2019-03-08 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | Phaed |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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\/*" ] } } |