Youtube image Link

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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" );