Incognito Watcher for Hulu

Watch shows on a guest hulu account without leaving any traces.

什么是Incognito Watcher for Hulu?

Incognito Watcher for Hulu是由Phaed开发的Chrome扩展程序,该扩展的主要功能是“Watch shows on a guest hulu account without leaving any traces.”。

扩展截图

screenshot

下载Incognito Watcher for Hulu扩展crx文件

下载Incognito Watcher for Hulu扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Incognito Watcher for Hulu Incognito Watcher for Hulu
ID idkhfpabjddfdlikcmaecgnfehpcjoco
官方URL https://chrome.google.com/webstore/detail/incognito-watcher-for-hul/idkhfpabjddfdlikcmaecgnfehpcjoco
简介 Watch shows on a guest hulu account without leaving any traces.
文件大小 1.56 MB
安装次数 164
当前版本 1.5
更新时间 2019-03-08
上架时间 2019-03-08
评分 5.00/5 共2次评分
开发者 Phaed
付费类型 free
支持的语言 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\/*"
        ]
    }
}