Direct Image Link E621/926

Рипалка ссылок в результатах поиска, для менеджеров закачки

Versione datata 28/08/2022. Vedi la nuova versione l'ultima versione.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name			Direct Image Link E621/926
// @version			2022.08.28
// @description:en	Images direct links ripper for pages with search results
// @description		Рипалка ссылок в результатах поиска, для менеджеров закачки
// @match			http*://e621.net/posts*
// @match			http*://e621.net/pool*
// @match			http*://e926.net/posts*
// @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=e621.net
// @grant			none
// @run-at			document-end
// ==/UserScript==

var artic = document . querySelectorAll ( '.post-preview[data-tags~="pussy"]:not([data-tags~="male/male"]):not([data-tags~="gore"]):not([data-tags~="censored"])' ),
	span = document . createElement ( 'span' ),
	mesto = document . querySelector ( '#top' ),
	x, src, md5, link, name, y,
	stop = [ '00006e15e4429737c4141106825856e4', 'INSERT YOUR BLOCKLIST HERE' , 'fffcd0ca991e9336cc9cb9cac78d0dc8' ],
	lever = 1; // 1 - pic source, 0 - file name

// SELECT
function selectblock ( name ) {
	var rng = document . createRange ( );
	rng . selectNode ( name );
	var sel = window . getSelection ( );
	sel . removeAllRanges ( );
	sel . addRange ( rng );
}

if ( artic != null ) {
	for ( x = 0; x < artic . length; x++ ) {
		src = artic [ x ] . getAttribute ( 'data-file-url' );
		md5 = src . split ( '/' );
		name = md5 [ md5 . length - 1 ];
		md5 = name . split ( '.' ) [ 0 ];
		for ( y = 0; y < stop . length; y++ ) {
			if ( md5 != '' && stop [ y ] == md5 ) md5 = '';
		}
		if ( md5 != '' ) {
			span . innerHTML += '<a href = "' + src + '">' + ( lever ? src : name ) + ' </a><br>'; /* select link */

			link = document . createElement ( 'a' ); /* thumb link */
			link . setAttribute ( 'href', src );
			link . innerHTML = md5;
			link . style = 'word-wrap: anywhere;';
			artic [ x ] . appendChild ( link );
		} else {
			artic [ x ] . style = 'opacity: 0.2';
		}
	}
	span . style = 'display: inline-block; column-gap: 3px; column-count: 7; font-size: 40%; line-height: .25em; max-height: 200px; overflow: auto;';
	mesto . appendChild ( span );
	selectblock ( span );
}