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.
1283 ocen
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 19883233, pred 7 dnevi
- Ocenjeno z 5 od 5— zingo, pred enim mesecem
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 19690659, pred 2 mesecema
- Ocenjeno z 1 od 5— Dan, pred 3 mesecigrant not working... works fine with ViolentMonkey Fx addon though... ;(
this line below:
"// @grant GM_xmlhttpRequest" - Ocenjeno z 5 od 5— Uporabnik Firefoxa 19638054, pred 4 meseci
- Ocenjeno z 5 od 5— Chris, pred 4 meseci
- Ocenjeno z 5 od 5— layla, pred 4 meseci
- Ocenjeno z 5 od 5— secret, pred 4 meseci
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 19625368, pred 4 meseci
- Ocenjeno z 1 od 5— Uporabnik Firefoxa 19617462, pred 5 meseci
- Ocenjeno z 5 od 5— Robin Filer, pred 5 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 3 od 5— SVT, pred 6 meseci
- Ocenjeno z 5 od 5— user, pred 6 meseci
- Ocenjeno z 5 od 5— kranitbeisser, pred 9 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 9 meseci
- Ocenjeno z 5 od 5— Galwayguy1, pred 9 meseci
- Ocenjeno z 5 od 5— jcvr1994, pred 9 meseci
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 19072892, pred 10 meseci
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 15244311, pred 10 meseci
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 19026513, pred enim letom
- Ocenjeno z 5 od 5— superyngo, pred enim letom
- Ocenjeno z 1 od 5— Uporabnik Firefoxa 17681293, pred enim letom
- Ocenjeno z 4 od 5— Alch, pred enim letom