Loner Hulu

Removes that annoying Refer a Friend button from Hulu pages

Что такое Loner Hulu?

Loner Hulu - это расширение Chrome, разработанное KacobJeith, и его основная функция - "Removes that annoying Refer a Friend button from Hulu pages".

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

screenshot
screenshot
screenshot

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

Скачайте файлы расширений Loner Hulu в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        A simple Chrome Extension that removes the annoying "Refer a Friend" button from Hulu

If you have recently watched Hulu on your computer, you may have experienced a mild annoyance at the giant green "Refer a Friend" button that obscures part of the show you're watching. You could always full-screen the viewer... but sometimes you just don't want to.

With the LonerHulu chrome extension, you can binge on your favorite Hulu shows without that giant green button reminding you that your friends are probably doing cooler things than you are right now.

** Disclaimer ** This extension is not affiliated with Hulu.                    

Основная информация о расширении

Название Loner Hulu Loner Hulu
ID doccdfcideapgphmoflilmpkjndlglfh
Официальный URL https://chrome.google.com/webstore/detail/loner-hulu/doccdfcideapgphmoflilmpkjndlglfh
Описание Removes that annoying Refer a Friend button from Hulu pages
Размер файла 12.57 KB
Количество установок 13
Текущая Версия 1.0
Последнее Обновление 2017-07-07
Дата публикации 2017-07-07
Рейтинг 3.67/5 Всего 3 оценок
Разработчик KacobJeith
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Loner Hulu",
    "description": "Removes that annoying Refer a Friend button from Hulu pages",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.hulu.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}