Recenzie doplnku Greasemonkey
Greasemonkey Autor: Anthony Lieuallen
1 271 recenzií
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 15074765, pred 6 rokmi
- Hodnotenie: 4 z 5autor: Používateľ Firefoxu - 14793314, pred 6 rokmi
- Hodnotenie: 1 z 5autor: Používateľ Firefoxu - 12324300, pred 6 rokmiTried 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. - Hodnotenie: 3 z 5autor: Používateľ Firefoxu - 15057280, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 15046873, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 15037635, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 15035118, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 15033431, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 15030897, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 15030607, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 15027320, pred 6 rokmi
- Hodnotenie: 2 z 5autor: Používateľ Firefoxu - 15019373, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 15016087, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 15015386, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 15009350, pred 6 rokmi
- Hodnotenie: 4 z 5autor: Používateľ Firefoxu - 15002743, pred 6 rokmi
- Hodnotenie: 5 z 5autor: miguilito, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Joseph Vidal-Rosset, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 13867189, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 15000099, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 14993813, pred 6 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 14984184, pred 6 rokmi