Greasemonkey 的評論
Greasemonkey 作者: Anthony Lieuallen
1,281 筆評論
- 評價 1 分,滿分 5 分來自 Firefox 使用者 15134277,7 年前
- 評價 5 分,滿分 5 分來自 Jorge Luis JA,7 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 15128740,7 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 15123611,7 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 14733699,7 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 15110948,7 年前
- 評價 5 分,滿分 5 分來自 Tim Johnston,7 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 15076648,7 年前
- 評價 1 分,滿分 5 分來自 Firefox 使用者 15074868,7 年前
- 評價 4 分,滿分 5 分來自 Firefox 使用者 13197216,7 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 15074765,7 年前
- 評價 4 分,滿分 5 分來自 Firefox 使用者 14793314,7 年前
- 評價 1 分,滿分 5 分來自 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. - 評價 3 分,滿分 5 分來自 Firefox 使用者 15057280,7 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 15046873,7 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 15037635,7 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 15035118,7 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 15033431,7 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 15030897,7 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 15030607,7 年前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 15027320,7 年前