Direct URL Webtoons

Extract Pic Link

目前为 2020-04-18 提交的版本。查看 最新版本

// ==UserScript==
// @name			Direct URL Webtoons
// @version			2020.04.18
// @description		Extract Pic Link
// @include			http*://www.webtoons.com*
// @author			Rainbow-Spike
// @namespace		https://gf.qytechs.cn/users/7568
// @homepage		https://gf.qytechs.cn/ru/users/7568-dr-yukon
// @icon			https://www.google.com/s2/favicons?domain=webtoons.com
// @grant			none
// @run-at			document-end
// ==/UserScript==

var timer = 300,
	img = document.querySelector ( "img._images" ).src;

var nod = document.createElement ( "a" );
nod.href = img;
nod.style = 'font-size: 20px; left: 5px; position: fixed; text-decoration: underline; top: 50px; z-index: 9999;';
nod.innerHTML = 'Copy Direct Link:' + img;
nod.className = 'us_link';
document.querySelector ( "body" ).appendChild ( nod );

function reloader ( ) {
	img = document.querySelector ( "img._images" ).src
	document.querySelector ( ".us_link" );
	nod.href = img;
	nod.innerHTML = 'Copy Direct Link:' + img;
}

setInterval ( reloader, timer );

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址