Youtube image Link

Fetches the image link from the page metadata and adds it to the page so it can be easily dragged/copied.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Youtube image Link
// @namespace    http://radialbit.com
// @version      0.2
// @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/*
// @update       https://greasyfork.org/scripts/14021-youtube-image-link/code/Youtube%20image%20Link.user.js
// @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" );