GreasyFork - jQuery Warning in the Code Tab with jQuery

Match "jquery" in @require lines and show large jQuery warning when you are checking out the Code tab on Greasy Fork. Now written with jQuery.

Versione datata 04/07/2023. 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              GreasyFork - jQuery Warning in the Code Tab with jQuery
// @name:zh-CN        GreasyFork - 在“代码”中显示 jQuery 警告 - jQuery 版
// @description       Match "jquery" in @require lines and show large jQuery warning when you are checking out the Code tab on Greasy Fork. Now written with jQuery.
// @description:zh-CN 在查看 Greasy Fork 代码页时,通过判断 @require 行中是否有 jquery,显示特大号红色 jQuery 警告。现更以 jQuery 版本呈现。
// @namespace         RainSlide
// @author            RainSlide
// @icon              https://greasyfork.org/packs/media/images/blacklogo96-b2384000fca45aa17e45eb417cbcbb59.png
// @version           1.2.2
// @license           blessing
// @require           https://code.jquery.com/jquery-3.7.0.slim.min.js
// @match             https://greasyfork.org/*/scripts/*/code
// @grant             none
// ==/UserScript==

"use strict";

$( '.code-container > pre' )
	.first()
	.filter(
		( index, pre ) =>
			/\n[ \t]*\/\/[ \t]*@require[ \t]+.+?jquery/
				.test( $( pre ).text() )
	)
	.parent()
	.before(
		$( '<p></p>' )
			.css( "text-align", "center" )
			.append(
				$( '<strong></strong>' )
					.text( "jQuery!!!" )
					.css({
						"color"     : "red",
						"font-size" : "5em"
					})
			)
	);