Pógódnośenja za Greasemonkey
Greasemonkey wót Anthony Lieuallen
Pógódnośenja wót Wužywaŕ Firefox 12324300
Z 1 z 5 pógódnośony
wót Wužywaŕ Firefox 12324300, hace 6 añosTried 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.269 pógódnośenjow
- Z 5 z 5 pógódnośonywót elsen, hace 5 horas
- Z 5 z 5 pógódnośonywót jcvr1994, hace 4 días
- Z 5 z 5 pógódnośonywót Wužywaŕ Firefox 19072892, hace un mes
- Z 5 z 5 pógódnośonywót Wužywaŕ Firefox 15244311, hace un mes
- Z 5 z 5 pógódnośonywót Wužywaŕ Firefox 19026513, hace un mes
- Z 5 z 5 pógódnośonywót superyngo, hace 2 meses
- Z 1 z 5 pógódnośonywót Wužywaŕ Firefox 17681293, hace 2 meses
- Z 4 z 5 pógódnośonywót Alch, hace 3 meses
- Z 5 z 5 pógódnośonywót Ronald, hace 3 meses
- Z 5 z 5 pógódnośonywót Federico, hace 4 meses
- Z 5 z 5 pógódnośonywót Wužywaŕ Firefox 18903740, hace 4 meses
- Z 5 z 5 pógódnośonywót Wužywaŕ Firefox 18353722, hace 4 meses
- Z 5 z 5 pógódnośonywót zsyzsykk, hace 4 meses
- Z 5 z 5 pógódnośonywót M. YC Sama~, hace 5 meses
- Z 5 z 5 pógódnośonywót Marty, hace 5 meses
- Z 5 z 5 pógódnośonywót Wužywaŕ Firefox 18814634, hace 5 meses
- Z 5 z 5 pógódnośonywót Wužywaŕ Firefox 18484777, hace 6 meses
- Z 5 z 5 pógódnośonywót darcy, hace 6 meses
- Z 5 z 5 pógódnośonywót Wužywaŕ Firefox 18450251, hace 7 meses
- Z 5 z 5 pógódnośonywót Wužywaŕ Firefox 18740199, hace 7 meses
- Z 5 z 5 pógódnośonywót Vasili Gulevich, hace 7 meses
- Z 5 z 5 pógódnośonywót Wužywaŕ Firefox 18717782, hace 7 meses
- Z 1 z 5 pógódnośonywót sonikreducer, hace 8 mesesnothing works. no support, no online tutorials match up with the screen. TWO THUMBS DOWN!!!