Le site Web implémente jQuery dans js

// Paste this into your JS Console and jQuery sould be available! :)
var script = document.createElement('script');
script.src = 'https://code.jquery.com/jquery-3.6.0.min.js';
script.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(script);
ElHok