NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Bigger Like Bar // @namespace http://tampermonkey.net/ // @version 0.1 // @description Makes like bar bigger. // @author Ontake // @match https://www.youtube.com/* // @grant none // @copyright 2020, OnTake (https://openuserjs.org/users/OnTake) // @license MIT // ==/UserScript== function updatebar(){ try{ document.getElementById("sentiment").style.width = "100%"; } catch(error){ setTimeout(updatebar, 1000); } } updatebar();