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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
        ]
    }
}