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 分來自 Joseph Vidal-Rosset,6 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 13867189,6 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 15000099,6 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 14993813,6 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 14984184,6 年前