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
官方網址 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\/*"
        ]
    }
}