Vurdering for Greasemonkey
Greasemonkey av Anthony Lieuallen
Vurdering av Firefox-brukar 12324300
Vurdering: 1 av 5
av Firefox-brukar 12324300, 7 år sidanTried 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 vurderingar
- Vurdering: 5 av 5av Diana Mcbride, 5 dagar sidan
- Vurdering: 5 av 5av lolifeflow, ein månad sidan
- Vurdering: 5 av 5av Jessica Cherry, ein månad sidanI've tried several alternatives and this one is by far the best. Straightforward and does the job perfectly.
- Vurdering: 5 av 5av Amanda Baker, ein månad sidanGreat extension, highly recommend. Simple to use and very reliable. No slowdowns, no crashes.
- Vurdering: 5 av 5av Kelly Bryan, ein månad sidanThis extension is fantastic. Super useful and well maintained. Exactly what I was looking for.
- Vurdering: 5 av 5av Firefox-brukar 19909981, ein månad sidan
- Vurdering: 5 av 5av Firefox-brukar 19906142, ein månad sidan
- Vurdering: 4 av 5av ֆðཞཞðw, ein månad sidan
- Vurdering: 5 av 5av Firefox-brukar 12734305, 2 månader sidan
- Vurdering: 5 av 5av a158w, 2 månader sidan
- Vurdering: 5 av 5av Firefox-brukar 19883233, 2 månader sidan
- Vurdering: 5 av 5av zingo, 3 månader sidan
- Vurdering: 5 av 5av Firefox-brukar 19690659, 4 månader sidan
- Vurdering: 1 av 5av Dan, 5 månader sidangrant not working... works fine with ViolentMonkey Fx addon though... ;(
this line below:
"// @grant GM_xmlhttpRequest" - Vurdering: 5 av 5av Firefox-brukar 19638054, 6 månader sidan
- Vurdering: 5 av 5av Chris, 6 månader sidan
- Vurdering: 5 av 5av layla, 6 månader sidan
- Vurdering: 5 av 5av secret, 6 månader sidan
- Vurdering: 5 av 5av Firefox-brukar 19625368, 6 månader sidan
- Vurdering: 1 av 5av Firefox-brukar 19617462, 6 månader sidan
- Vurdering: 5 av 5av Robin Filer, 7 månader sidanthe 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
- Vurdering: 3 av 5av SVT, 7 månader sidan
- Vurdering: 5 av 5av kranitbeisser, 10 månader sidanErweiterung funktioniert da los, so wie ich mir das vorstelle. Danke für die gute Arbeit