Greasy Fork is available in English.
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')
})();