NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Youtube image Link // @namespace http://radialbit.com // @version 0.1 // @description Fetches the image link from the page metadata and adds it to the page so it can be easily dragged/copied. // @author Zoltee // @match http*://www.youtube.com/* // @require http://code.jquery.com/jquery-2.1.4.min.js // @copyright Radialbit // ==/UserScript== $( '<img src="'+$("meta[property='og:image']").attr("content")+'" style="max-height:25px; margin-left: 8px; vertical-align: middle;">').insertAfter( "#watch7-subscription-container" );