Incognito Watcher for Hulu
Watch shows on a guest hulu account without leaving any traces.
O que é Incognito Watcher for Hulu?
Incognito Watcher for Hulu é uma extensão do Chrome desenvolvida por Phaed, e sua principal característica é "Watch shows on a guest hulu account without leaving any traces.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Incognito Watcher for Hulu
Baixe arquivos de extensão Incognito Watcher for Hulu no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | idkhfpabjddfdlikcmaecgnfehpcjoco |
URL Oficial | https://chrome.google.com/webstore/detail/incognito-watcher-for-hul/idkhfpabjddfdlikcmaecgnfehpcjoco |
Descrição | Watch shows on a guest hulu account without leaving any traces. |
Tamanho do Arquivo | 1.56 MB |
Contagem de Instalações | 164 |
Versão Atual | 1.5 |
Última Atualização | 2019-03-08 |
Data de Publicação | 2019-03-08 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Phaed |
Tipo de Pagamento | free |
Idiomas Suportados | 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\/*" ] } } |