Análises de Greasemonkey
Greasemonkey por Anthony Lieuallen
Análise de Usuário 12324300 do Firefox
Avaliado em 1 de 5
por Usuário 12324300 do Firefox, há 7 anosTried 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.281 análises
- Avaliado em 1 de 5por Dan, há 17 diasgrant not working... works fine with ViolentMonkey Fx addon though... ;(
this line below:
"// @grant GM_xmlhttpRequest" - Avaliado em 5 de 5por Usuário 19638054 do Firefox, há um mês
- Avaliado em 5 de 5por Usuário 19625368 do Firefox, há um mês
- Avaliado em 1 de 5por Usuário 19617462 do Firefox, há 2 meses
- Avaliado em 5 de 5por Robin Filer, há 3 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
- Avaliado em 5 de 5por super loo, há 3 meses
- Avaliado em 3 de 5por SVT, há 3 meses
- Avaliado em 5 de 5por user, há 3 meses
- Avaliado em 5 de 5por kranitbeisser, há 6 mesesErweiterung funktioniert da los, so wie ich mir das vorstelle. Danke für die gute Arbeit
- Avaliado em 5 de 5por Usuário 19145735 do Firefox, há 6 meses
- Avaliado em 5 de 5por Galwayguy1, há 6 meses
- Avaliado em 5 de 5por jcvr1994, há 6 meses
- Avaliado em 5 de 5por Usuário 19072892 do Firefox, há 7 meses
- Avaliado em 5 de 5por Usuário 15244311 do Firefox, há 7 meses
- Avaliado em 5 de 5por Usuário 19026513 do Firefox, há 8 meses
- Avaliado em 5 de 5por superyngo, há 8 meses
- Avaliado em 1 de 5por Usuário 17681293 do Firefox, há 8 meses
- Avaliado em 4 de 5por Alch, há 9 meses
- Avaliado em 5 de 5por Ronald, há 9 meses
- Avaliado em 5 de 5por Federico, há 10 meses
- Avaliado em 5 de 5por Usuário 18903740 do Firefox, há 10 meses