Revisiones de Greasemonkey
Greasemonkey por Anthony Lieuallen
Revisado por Usuario de Firefox 12324300
Se valoró con 1 de 5
por Usuario de Firefox 12324300, hace 7 añosTried 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.
1292 revisiones
- Se valoró con 5 de 5por Diana Mcbride, hace un mes
- Se valoró con 5 de 5por lolifeflow, hace 2 meses
- Se valoró con 5 de 5por Jessica Cherry, hace 2 mesesI've tried several alternatives and this one is by far the best. Straightforward and does the job perfectly.
- Se valoró con 5 de 5por Amanda Baker, hace 2 mesesGreat extension, highly recommend. Simple to use and very reliable. No slowdowns, no crashes.
- Se valoró con 5 de 5por Kelly Bryan, hace 2 mesesThis extension is fantastic. Super useful and well maintained. Exactly what I was looking for.
- Se valoró con 5 de 5por Usuario de Firefox 19909981, hace 2 meses
- Se valoró con 5 de 5por Usuario de Firefox 19906142, hace 2 meses
- Se valoró con 4 de 5por ֆðཞཞðw, hace 2 meses
- Se valoró con 5 de 5por Usuario de Firefox 12734305, hace 2 meses
- Se valoró con 5 de 5por a158w, hace 2 meses
- Se valoró con 5 de 5por Usuario de Firefox 19883233, hace 3 meses
- Se valoró con 5 de 5por zingo, hace 4 meses
- Se valoró con 5 de 5por Usuario de Firefox 19690659, hace 5 meses
- Se valoró con 1 de 5por Dan, hace 6 mesesgrant not working... works fine with ViolentMonkey Fx addon though... ;(
this line below:
"// @grant GM_xmlhttpRequest" - Se valoró con 5 de 5por Usuario de Firefox 19638054, hace 7 meses
- Se valoró con 5 de 5por Chris, hace 7 meses
- Se valoró con 5 de 5por layla, hace 7 meses
- Se valoró con 5 de 5por secret, hace 7 meses
- Se valoró con 5 de 5por Usuario de Firefox 19625368, hace 7 meses
- Se valoró con 1 de 5por Usuario de Firefox 19617462, hace 7 meses
- Se valoró con 5 de 5por Robin Filer, hace 8 mesesthe 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
- Se valoró con 3 de 5por SVT, hace 8 meses
- Se valoró con 5 de 5por kranitbeisser, hace un añoErweiterung funktioniert da los, so wie ich mir das vorstelle. Danke für die gute Arbeit