NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Remove Youtube Rewind
// @namespace http://tampermonkey.net/
// @version 1
// @description Removes the #YoutubeRewind button in the top left
// @icon https://youtube.com/favicon.ico
// @author Bubba
// @match http://youtube.com/*
// @match http://www.youtube.com/*
// @match https://youtube.com/*
// @match https://www.youtube.com/*
// @grant none
// @require http://code.jquery.com/jquery-1.12.4.min.js
// ==/UserScript==
(function() {
'use strict';
$('[alt="#YouTubeRewind"]').remove();
})();