Recenzje dodatku Greasemonkey
Greasemonkey Autor: Anthony Lieuallen
1271 recenzji
- Ocena: 5/5Autor: Użytkownik Firefoksa 15074765, 6 lat temu
- Ocena: 4/5Autor: Użytkownik Firefoksa 14793314, 6 lat temu
- Ocena: 1/5Autor: Użytkownik Firefoksa 12324300, 6 lat temuTried 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. - Ocena: 3/5Autor: Użytkownik Firefoksa 15057280, 6 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 15046873, 6 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 15037635, 6 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 15035118, 6 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 15033431, 6 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 15030897, 6 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 15030607, 6 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 15027320, 6 lat temu
- Ocena: 2/5Autor: Użytkownik Firefoksa 15019373, 6 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 15016087, 6 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 15015386, 6 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 15009350, 6 lat temu
- Ocena: 4/5Autor: Użytkownik Firefoksa 15002743, 6 lat temu
- Ocena: 5/5Autor: miguilito, 6 lat temu
- Ocena: 5/5Autor: Joseph Vidal-Rosset, 6 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 13867189, 6 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 15000099, 6 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 14993813, 6 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 14984184, 6 lat temu