Critiques pour Greasemonkey
Greasemonkey par Anthony Lieuallen
Avis de Utilisateur ou utilisatrice 12324300 de Firefox
Noté 1 sur 5
par Utilisateur ou utilisatrice 12324300 de Firefox, il y a 7 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.
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.
1 292 notes
- Noté 5 sur 5par Diana Mcbride, il y a un mois
- Noté 5 sur 5par lolifeflow, il y a 2 mois
- Noté 5 sur 5par Jessica Cherry, il y a 2 moisI've tried several alternatives and this one is by far the best. Straightforward and does the job perfectly.
- Noté 5 sur 5par Amanda Baker, il y a 2 moisGreat extension, highly recommend. Simple to use and very reliable. No slowdowns, no crashes.
- Noté 5 sur 5par Kelly Bryan, il y a 2 moisThis extension is fantastic. Super useful and well maintained. Exactly what I was looking for.
- Noté 5 sur 5par Utilisateur ou utilisatrice 19909981 de Firefox, il y a 2 mois
- Noté 5 sur 5par Utilisateur ou utilisatrice 19906142 de Firefox, il y a 2 mois
- Noté 4 sur 5par ֆðཞཞðw, il y a 2 mois
- Noté 5 sur 5par Utilisateur ou utilisatrice 12734305 de Firefox, il y a 3 mois
- Noté 5 sur 5par a158w, il y a 3 mois
- Noté 5 sur 5par Utilisateur ou utilisatrice 19883233 de Firefox, il y a 3 mois
- Noté 5 sur 5par zingo, il y a 4 mois
- Noté 5 sur 5par Utilisateur ou utilisatrice 19690659 de Firefox, il y a 5 mois
- Noté 1 sur 5par Dan, il y a 6 moisgrant not working... works fine with ViolentMonkey Fx addon though... ;(
this line below:
"// @grant GM_xmlhttpRequest" - Noté 5 sur 5par Utilisateur ou utilisatrice 19638054 de Firefox, il y a 7 mois
- Noté 5 sur 5par Chris, il y a 7 mois
- Noté 5 sur 5par layla, il y a 7 mois
- Noté 5 sur 5par secret, il y a 7 mois
- Noté 5 sur 5par Utilisateur ou utilisatrice 19625368 de Firefox, il y a 7 mois
- Noté 1 sur 5par Utilisateur ou utilisatrice 19617462 de Firefox, il y a 7 mois
- Noté 5 sur 5par Robin Filer, il y a 8 moisthe docs on the wiki are really obtuse and some of it is straight up outdated. But the recent updates have made it a lot better, and it's far more secure and well engineered than the other options available even if the ux is still pretty clunky
- Noté 3 sur 5par SVT, il y a 8 mois
- Noté 5 sur 5par kranitbeisser, il y a un anErweiterung funktioniert da los, so wie ich mir das vorstelle. Danke für die gute Arbeit