Direct Image Link Booru.org

Показывает прямые ссылки под эскизами

As of 2020-04-14. See the latest version.

// ==UserScript==
// @name			Direct Image Link Booru.org
// @version			2020.04.14.1
// @description		Показывает прямые ссылки под эскизами
// @include			http*://*booru.org*
// @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=booru.org
// @grant			none
// @run-at			document-end
// ==/UserScript==

var spans = document.querySelectorAll ( "span.thumb" ), dlink, dir;

for ( var x in spans ) {
	dir = spans[ x ].querySelector ( "img" )
		.getAttribute ( 'src' )
		.split ( '?' )[ 0 ]
		.replace ( "thumbnails", "images" )
		.replace ( "thumbnail_", "" );
	dlink = document.createElement ( 'a' );
	dlink.setAttribute ( 'href', dir );
	dlink.innerHTML = 'Link';

	spans[ x ].appendChild ( document.createElement ( 'br' ) );
	spans[ x ].appendChild ( dlink );

	dir = dir.replace ( "jpg", "png" );
	dlink = document.createElement ( 'a' );
	dlink.setAttribute ( 'href', dir );
	dlink.innerHTML = 'Link';
	spans[ x ].appendChild ( document.createElement ( 'br' ) );
	spans[ x ].appendChild ( dlink );
}