Direct URL Webtoons

Extract Pic Link

Stan na 18-04-2020. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name			Direct URL Webtoons
// @version			2020.04.18
// @description		Extract Pic Link
// @include			http*://www.webtoons.com*
// @author			Rainbow-Spike
// @namespace		https://greasyfork.org/users/7568
// @homepage		https://greasyfork.org/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 );