Greasemonkey에 대한 리뷰
Greasemonkey 제작자: Anthony Lieuallen
Firefox 사용자 12324300 님의 리뷰
5점 만점에 1점
Firefox 사용자 12324300 님, 7년 전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,282개
- 5점 만점에 5점Firefox 사용자 19690659 님, 2달 전
- 5점 만점에 5점Firefox 사용자 19638054 님, 4달 전
- 5점 만점에 5점Firefox 사용자 19625368 님, 4달 전
- 5점 만점에 1점Firefox 사용자 19617462 님, 4달 전
- 5점 만점에 5점Robin Filer 님, 5달 전the docs on the wiki are really obtuse and some of it is straight up outdated. But the recent updates have made it a lot better, and it's far more secure and well engineered than the other options available even if the ux is still pretty clunky
- 5점 만점에 5점kranitbeisser 님, 8달 전Erweiterung funktioniert da los, so wie ich mir das vorstelle. Danke für die gute Arbeit
- 5점 만점에 5점Firefox 사용자 19145735 님, 9달 전
- 5점 만점에 5점Galwayguy1 님, 9달 전
- 5점 만점에 5점Firefox 사용자 19072892 님, 10달 전
- 5점 만점에 5점Firefox 사용자 15244311 님, 10달 전
- 5점 만점에 5점Firefox 사용자 19026513 님, 10달 전
- 5점 만점에 1점Firefox 사용자 17681293 님, 일 년 전