-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
24 lines (22 loc) · 818 Bytes
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// ==UserScript==
// @name Cliquez sur Suivant automatiquement
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Clique automatiquement sur le bouton "Suivant" ayant le sélecteur CSS .tex:nth-child(1)
// @author Vous
// @match https://esprit-donghua.xyz/*
// @match https://odysee.com/*
// @grant none
// ==/UserScript==
// Fonction pour cliquer sur l'élément
function cliquerSurSuivant() {
var boutonSuivant = document.querySelector('div.nvs a[aria-label="next"]');
if (boutonSuivant) {
boutonSuivant.click();
} else {
console.log("Bouton Suivant non trouvé.");
}
}
// Exécuter la fonction au chargement de la page
window.addEventListener('load', cliquerSurSuivant);
})();