Greasemonkey에 대한 리뷰
Greasemonkey 제작자: Anthony Lieuallen
Firefox 사용자 12324300 님의 리뷰
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.
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,271개
- 5점 만점에 5점kranitbeisser 님, 2달 전Erweiterung funktioniert da los, so wie ich mir das vorstelle. Danke für die gute Arbeit
- 5점 만점에 5점Firefox 사용자 19145735 님, 2달 전
- 5점 만점에 5점AlienAnalytics21 님, 2달 전
- 5점 만점에 5점Firefox 사용자 19072892 님, 3달 전
- 5점 만점에 5점Firefox 사용자 15244311 님, 3달 전
- 5점 만점에 5점Firefox 사용자 19026513 님, 4달 전
- 5점 만점에 1점Firefox 사용자 17681293 님, 4달 전
- 5점 만점에 5점Firefox 사용자 18903740 님, 6달 전
- 5점 만점에 5점Firefox 사용자 18353722 님, 6달 전
- 5점 만점에 5점M. YC Sama~ 님, 7달 전
- 5점 만점에 5점Firefox 사용자 18814634 님, 8달 전
- 5점 만점에 5점Firefox 사용자 18484777 님, 8달 전
- 5점 만점에 5점Firefox 사용자 18450251 님, 9달 전
- 5점 만점에 5점Firefox 사용자 18740199 님, 9달 전
- 5점 만점에 5점Vasili Gulevich 님, 10달 전