NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name YouTube Gaming Chat Fixer // @namespace http://tampermonkey.net/ // @version 0.3 // @icon https://youtube.com/favicon.ico // @description Fixes static "Enter text" massage on chat input field. It's annoying as fuck, at least in chrome it wont go away. // @author RageNugget // @match https://www.youtube.com/live_chat* // @grant none // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== /* v0.3 - removed redundant code */ (function() { 'use strict'; //remove input label $(document).ready(function() { $('label[for="live-comments-input-field"]').remove(); }); })();