Beoardielingen foar Greasemonkey
Greasemonkey troch Anthony Lieuallen
Wurdearringen foar Firefox-brûker 12324300
Wurdearring: 1 fan 5
troch Firefox-brûker 12324300, 7 jierren lynTried 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 beoardielingen
- Wurdearring: 5 fan 5troch Diana Mcbride, 2 moannen lyn
- Wurdearring: 5 fan 5troch lolifeflow, 3 moannen lyn
- Wurdearring: 5 fan 5troch Jessica Cherry, 3 moannen lynI've tried several alternatives and this one is by far the best. Straightforward and does the job perfectly.
- Wurdearring: 5 fan 5troch Amanda Baker, 3 moannen lynGreat extension, highly recommend. Simple to use and very reliable. No slowdowns, no crashes.
- Wurdearring: 5 fan 5troch Kelly Bryan, 3 moannen lynThis extension is fantastic. Super useful and well maintained. Exactly what I was looking for.
- Wurdearring: 5 fan 5troch Firefox-brûker 19909981, 3 moannen lyn
- Wurdearring: 5 fan 5troch Firefox-brûker 19906142, 4 moannen lyn
- Wurdearring: 4 fan 5troch ֆðཞཞðw, 4 moannen lyn
- Wurdearring: 5 fan 5troch Firefox-brûker 12734305, 4 moannen lyn
- Wurdearring: 5 fan 5troch a158w, 4 moannen lyn
- Wurdearring: 5 fan 5troch Firefox-brûker 19883233, 4 moannen lyn
- Wurdearring: 5 fan 5troch zingo, 5 moannen lyn
- Wurdearring: 5 fan 5troch Firefox-brûker 19690659, 6 moannen lyn
- Wurdearring: 1 fan 5troch Dan, 7 moannen lyngrant not working... works fine with ViolentMonkey Fx addon though... ;(
this line below:
"// @grant GM_xmlhttpRequest" - Wurdearring: 5 fan 5troch Firefox-brûker 19638054, 8 moannen lyn
- Wurdearring: 5 fan 5troch Chris, 8 moannen lyn
- Wurdearring: 5 fan 5troch layla, 8 moannen lyn
- Wurdearring: 5 fan 5troch secret, 8 moannen lyn
- Wurdearring: 5 fan 5troch Firefox-brûker 19625368, 8 moannen lyn
- Wurdearring: 1 fan 5troch Firefox-brûker 19617462, 8 moannen lyn
- Wurdearring: 5 fan 5troch Robin Filer, 9 moannen lynthe 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
- Wurdearring: 3 fan 5troch SVT, 9 moannen lyn
- Wurdearring: 5 fan 5troch kranitbeisser, ien jier lynErweiterung funktioniert da los, so wie ich mir das vorstelle. Danke für die gute Arbeit