NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name toutatice bypass by jolilol
// @namespace http://tampermonkey.net/
// @version 1.2
// @description bring to life the educonnect button
// @match https://ent.toutatice.fr/wayf/*
// @grant none
// @updateURL https://openuserjs.org/meta/jolilol/toutatice_bypass_by_jolilol.meta.js
// @downloadURL https://openuserjs.org/install/jolilol/toutatice_bypass_by_jolilol.user.js
// @copyright 2025, jolilol (https://openuserjs.org/users/jolilol)
// @license MIT
// ==/UserScript==
(function() {
'use strict';
const interval = setInterval(() => {
const btn = document.querySelector('button.card-body.card-button.blocage-button');
if (btn) {
// remove only the blocking class
btn.classList.remove('blocage-button');
clearInterval(interval);
}
}, 500);
})();