Critiques pour Greasemonkey
Greasemonkey par Anthony Lieuallen
1 271 notes
- Noté 5 sur 5par Utilisateur ou utilisatrice 15074765 de Firefox, il y a 6 ans
- Noté 4 sur 5par Utilisateur ou utilisatrice 14793314 de Firefox, il y a 6 ans
- Noté 1 sur 5par Utilisateur ou utilisatrice 12324300 de Firefox, il y a 6 ansTried to use a script multiple times with no success. Installed, reinstalled, made sure javascript is enabled. Under EDIT I added each site. No luck..It is a script for Disqus that is supposed to make clicking on (show all replies) open all of them.
This is the script :
// ==UserScript==
// @name Disqus Expand Replies Firefox 0.4
// @version 0.4
// @description Expand all 'Show more replies' links when one clicked
// @author Nerf
// @match https://disqus.com/embed/comments/*
// @run-at document-start
// ==/UserScript==
window.addEventListener('mousedown', function(event) {
if (event.target.className.indexOf('show-children')>-1) {
var ar = document.querySelectorAll('a.show-children:not(.expanded)');
for (var a of ar) {
a.className += " expanded";
a.click();
}
return;
}
});
OK I tried with another script change app and it's probably nothing wrong with Greasemonkey just a script that doesn't work- but since it was the only reason I needed it I uninstalled both apps. - Noté 3 sur 5par Utilisateur ou utilisatrice 15057280 de Firefox, il y a 6 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 15046873 de Firefox, il y a 6 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 15037635 de Firefox, il y a 6 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 15035118 de Firefox, il y a 6 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 15033431 de Firefox, il y a 6 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 15030897 de Firefox, il y a 6 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 15030607 de Firefox, il y a 6 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 15027320 de Firefox, il y a 6 ans
- Noté 2 sur 5par Utilisateur ou utilisatrice 15019373 de Firefox, il y a 6 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 15016087 de Firefox, il y a 6 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 15015386 de Firefox, il y a 6 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 15009350 de Firefox, il y a 6 ans
- Noté 4 sur 5par Utilisateur ou utilisatrice 15002743 de Firefox, il y a 6 ans
- Noté 5 sur 5par miguilito, il y a 6 ans
- Noté 5 sur 5par Joseph Vidal-Rosset, il y a 6 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 13867189 de Firefox, il y a 6 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 15000099 de Firefox, il y a 6 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 14993813 de Firefox, il y a 6 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 14984184 de Firefox, il y a 6 ans