Direct Image Link Gelbooru

Переработка переработки переработки Zendillo's Gelbooru Thumb to Image script. Показывает прямые ссылки под эскизами

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name			Direct Image Link Gelbooru
// @version			2024.11.04
// @description		Переработка переработки переработки Zendillo's Gelbooru Thumb to Image script. Показывает прямые ссылки под эскизами
// @match			https://gelbooru.com/*
// @icon			https://www.google.com/s2/favicons?domain=gelbooru.com
// @author			Rainbow-Spike
// @namespace		https://greasyfork.org/users/7568
// @homepage		https://greasyfork.org/ru/users/7568-dr-yukon
// @grant			none

// ==/UserScript==

if (typeof resizeTransition === "function" ) { resizeTransition() || ''; return false; } /* always full images */

var lever = 1,
	images = document . querySelectorAll ( ".thumbnail-preview img" ),
	topNode = document . querySelector ( '.navSubmenu' ),
	topInsert = document . createElement ( 'div' ),
	directLink,
	imgSrc = [ ], x;

function creLink ( i ) {
	directLink = document . createElement ( lever ? 'a' : 'span' );
	if ( lever ) directLink . setAttribute ( 'href', imgSrc [ i ] );
	directLink . innerHTML = imgSrc [ i ] + '\n';
	topInsert . appendChild ( directLink );
	topInsert . appendChild ( document . createElement ( 'br' ) );
};

for ( x = 0; x <= images . length; x++ ) {
	if ( images [ x ] != undefined ) {
		if ( lever ) {
			imgSrc [ 0 ] = images [ x ] . getAttribute ( 'src' ) . split ( '?' ) [ 0 ] . replace ( "thumbnails", "images" ) . replace ( "thumbnail_", "" );
			if ( images [ x ] . className == 'webm' ) {
				imgSrc [ 0 ] = imgSrc [ 0 ] . replace ( "img3", "video-cdn3" ) . replace ( ".jpg", ".mp4" ); creLink ( 0 );
			} else {
				if ( ! /animated_gif/ . test ( images [ x ] . title ) ) {
					imgSrc [ 1 ] = imgSrc [ 0 ] . replace ( ".jpg", ".png" ); creLink ( 1 );
					imgSrc [ 2 ] = imgSrc [ 0 ] . replace ( ".jpg", ".jpeg" ); creLink ( 2 );
				};
				imgSrc [ 0 ] = imgSrc [ 0 ] . replace ( ".jpg", ".gif" ); creLink ( 0 );
			};
		} else {
			imgSrc [0] = images [ x ] . getAttribute ( 'src' ) . split ( 'nail_' ) [ 1 ] . split ( '.' ) [ 0 ];
			creLink ( 0 );
		};
		imgSrc = [ ];
	};
};

topInsert . style = 'display: inline-block; column-gap: 3px; column-count: 7; font-size: 40%; line-height: .25em; max-height: 200px; overflow: auto;';
topNode . appendChild ( topInsert );

function selBlock ( name ) {
	var rng = document . createRange ( );
	rng . selectNode ( name );
	var sel = window . getSelection ( );
	sel . removeAllRanges ( );
	sel . addRange ( rng );
}
selBlock ( topInsert );