Loner Hulu

Removes that annoying Refer a Friend button from Hulu pages

Vad är Loner Hulu?

Loner Hulu är en Chrome-tillägg utvecklad av KacobJeith, och dess huvudfunktion är "Removes that annoying Refer a Friend button from Hulu pages".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Loner Hulu-förlängningens CRX-fil

Ladda ner Loner Hulu-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Loner Hulu Loner Hulu
ID doccdfcideapgphmoflilmpkjndlglfh
Officiell webbadress https://chrome.google.com/webstore/detail/loner-hulu/doccdfcideapgphmoflilmpkjndlglfh
Beskrivning Removes that annoying Refer a Friend button from Hulu pages
Filstorlek 12.57 KB
Antal Installationer 13
Aktuell Version 1.0
Senast Uppdaterad 2017-07-07
Publiceringsdatum 2017-07-07
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare KacobJeith
Betalningssätt free
Stödda Språk 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"
    ]
}