Greasemonkey에 대한 리뷰
Greasemonkey 제작자: Anthony Lieuallen
리뷰 1,271개
- 5점 만점에 5점Firefox 사용자 15074765 님, 6년 전
- 5점 만점에 4점Firefox 사용자 14793314 님, 6년 전
- 5점 만점에 1점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. - 5점 만점에 3점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년 전
- 5점 만점에 2점Firefox 사용자 15019373 님, 6년 전
- 5점 만점에 5점Firefox 사용자 15016087 님, 6년 전
- 5점 만점에 5점Firefox 사용자 15015386 님, 6년 전
- 5점 만점에 5점Firefox 사용자 15009350 님, 6년 전
- 5점 만점에 4점Firefox 사용자 15002743 님, 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년 전