Incognito Watcher for Hulu

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

Что такое Incognito Watcher for Hulu?

Incognito Watcher for Hulu - это расширение Chrome, разработанное Phaed, и его основная функция - "Watch shows on a guest hulu account without leaving any traces.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Incognito Watcher for Hulu

Скачайте файлы расширений 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\/*"
        ]
    }
}