סקירות עבור Greasemonkey
Greasemonkey Anthony Lieuallen מאת
1,271 דירוגים
- דירוג 5 מתוך 5מאת משתמש Firefox 15074765, לפני 6 שנים
- דירוג 4 מתוך 5מאת משתמש Firefox 14793314, לפני 6 שנים
- דירוג 1 מתוך 5מאת משתמש Firefox 12324300, לפני 6 שניםTried 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. - דירוג 3 מתוך 5מאת משתמש Firefox 15057280, לפני 6 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 15046873, לפני 6 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 15037635, לפני 6 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 15035118, לפני 6 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 15033431, לפני 6 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 15030897, לפני 6 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 15030607, לפני 6 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 15027320, לפני 6 שנים
- דירוג 2 מתוך 5מאת משתמש Firefox 15019373, לפני 6 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 15016087, לפני 6 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 15015386, לפני 6 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 15009350, לפני 6 שנים
- דירוג 4 מתוך 5מאת משתמש Firefox 15002743, לפני 6 שנים
- דירוג 5 מתוך 5מאת miguilito, לפני 6 שנים
- דירוג 5 מתוך 5מאת Joseph Vidal-Rosset, לפני 6 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 13867189, לפני 6 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 15000099, לפני 6 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 14993813, לפני 6 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 14984184, לפני 6 שנים