Fetches the image link from the page metadata and adds it to the page so it can be easily dragged/copied.
当前为
// ==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" );