Hulu Logo Remover

Removes the logo overlay from the bottom right of your screen while streaming on Hulu.

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         Hulu Logo Remover
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Removes the logo overlay from the bottom right of your screen while streaming on Hulu.
// @author       MoTl0n
// @match        https://www.hulu.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var ref = document.querySelector('script');
    var style = document.createElement("style")
    style.innerHTML ='#web-player-app > div.ControlsContainer > img { display:none !important}';
    ref.parentNode.insertBefore(style, ref);
//console.log('script fired')
})();