NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name YouTube Gaming Third Party Cookie Banner Remover // @namespace http://tampermonkey.net/ // @version 0.1 // @icon http://gaming.youtube.com/s/gaming/favicons/favicon.ico // @description Removes the blue banner for third party cookies. It's annoying as fuck, at least in chrome it wont go away. // @author RageNugget // @match https://gaming.youtube.com/user* // @match https://gaming.youtube.com/watch* // @grant none // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== (function() { 'use strict'; //remove thrid party cookie warning setTimeout(function(){waitForElementToDisplay('#thirdpartywarning',500);},1000); function waitForElementToDisplay(selector, time) { if($(selector)!==null) { $(selector).remove(); } else { setTimeout(function() { waitForElementToDisplay(selector, time); }, time); } } })();