Ocene za Greasemonkey
Greasemonkey — Anthony Lieuallen
Ocena uporabnika Uporabnik Firefoxa 12324300
Ocenjeno z 1 od 5
— Uporabnik Firefoxa 12324300, pred 7 letiTried 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.
1281 ocen
- Ocenjeno z 1 od 5— Dan, pred enim mesecemgrant not working... works fine with ViolentMonkey Fx addon though... ;(
this line below:
"// @grant GM_xmlhttpRequest" - Ocenjeno z 5 od 5— Uporabnik Firefoxa 19638054, pred 2 mesecema
- Ocenjeno z 5 od 5— Chris, pred 2 mesecema
- Ocenjeno z 5 od 5— layla, pred 2 mesecema
- Ocenjeno z 5 od 5— secret, pred 2 mesecema
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 19625368, pred 2 mesecema
- Ocenjeno z 1 od 5— Uporabnik Firefoxa 19617462, pred 2 mesecema
- Ocenjeno z 5 od 5— Robin Filer, pred 3 mesecithe 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
- Ocenjeno z 5 od 5— super loo, pred 3 meseci
- Ocenjeno z 3 od 5— SVT, pred 3 meseci
- Ocenjeno z 5 od 5— user, pred 4 meseci
- Ocenjeno z 5 od 5— kranitbeisser, pred 6 meseciErweiterung funktioniert da los, so wie ich mir das vorstelle. Danke für die gute Arbeit
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 19145735, pred 7 meseci
- Ocenjeno z 5 od 5— Galwayguy1, pred 7 meseci
- Ocenjeno z 5 od 5— jcvr1994, pred 7 meseci
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 19072892, pred 8 meseci
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 15244311, pred 8 meseci
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 19026513, pred 8 meseci
- Ocenjeno z 5 od 5— superyngo, pred 9 meseci
- Ocenjeno z 1 od 5— Uporabnik Firefoxa 17681293, pred 9 meseci
- Ocenjeno z 4 od 5— Alch, pred 10 meseci
- Ocenjeno z 5 od 5— Ronald, pred 10 meseci
- Ocenjeno z 5 od 5— Federico, pred enim letom
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 18903740, pred enim letom