Direct Image Link E621/926

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

Verze ze dne 25. 03. 2023. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name			Direct Image Link E621/926
// @name:en			Direct Image Link E621/926
// @version			2023.03.25
// @description			Рипалка ссылок в результатах поиска, для менеджеров закачки
// @description:en		Images direct links ripper for pages with search results
// @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 lever = 1,							// 1 - pic source, 0 - file name
	want = /[^_]pussy|tribadism/,				// wanted tags
	unwant = /censored|gore|male\/male|my_little_pony/,	// unwanted tags
	wrong = 0,						// opacity of wrong tags
	have = 0,						// opacity of already haved media
	stop = [ '00006e15e4429737c4141106825856e4', '1...' ],	// list of already haved media, INSERT YOUR LIST

	artic = document . querySelectorAll ( '.post-preview' ),
	span = document . createElement ( 'span' ),
	mesto = document . querySelector ( '#top' ),
	x, tags, src, y, md5, name, link;

// 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++ ) {
		tags = artic [ x ] . getAttribute ( 'data-tags' );
		if ( want . test ( tags ) && !unwant . test ( tags ) ) {
			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 ( stop [ y ] == md5 ) {
					artic [ x ] . style = ( have == 0 ) ? 'display: none' : 'opacity: ' + have;
					md5 = '';
					break;
				};
			};
			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 = ( wrong == 0 ) ? 'display: none' : 'opacity: ' + wrong;
		}
	}
	span . style = 'display: inline-block; column-gap: 3px; column-count: 7; font-size: 40%; line-height: .25em; max-height: 200px; overflow: auto;';
	if ( mesto != null ) mesto . appendChild ( span );
	selectblock ( span );
}