Loner Hulu
Removes that annoying Refer a Friend button from Hulu pages
Co to jest Loner Hulu?
Loner Hulu to rozszerzenie Chrome opracowane przez KacobJeith, a jego główną funkcją jest „Removes that annoying Refer a Friend button from Hulu pages”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Loner Hulu
Pobierz pliki rozszerzeń Loner Hulu w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | doccdfcideapgphmoflilmpkjndlglfh |
Oficjalny URL | https://chrome.google.com/webstore/detail/loner-hulu/doccdfcideapgphmoflilmpkjndlglfh |
Opis | Removes that annoying Refer a Friend button from Hulu pages |
Rozmiar pliku | 12.57 KB |
Liczba instalacji | 13 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2017-07-07 |
Data Publikacji | 2017-07-07 |
Ocena | 3.67/5 Łącznie 3 Oceny |
Deweloper | KacobJeith |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |