Greasemonkey 的評論
Greasemonkey 作者: Anthony Lieuallen
Firefox 使用者 12324300 所留下的評論
評價 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.
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,291 筆評論
- 評價 5 分,滿分 5 分來自 lolifeflow,17 天前
- 評價 5 分,滿分 5 分來自 Jessica Cherry,18 天前I've tried several alternatives and this one is by far the best. Straightforward and does the job perfectly.
- 評價 5 分,滿分 5 分來自 Amanda Baker,18 天前Great extension, highly recommend. Simple to use and very reliable. No slowdowns, no crashes.
- 評價 5 分,滿分 5 分來自 Kelly Bryan,18 天前This extension is fantastic. Super useful and well maintained. Exactly what I was looking for.
- 評價 5 分,滿分 5 分來自 Firefox 使用者 19909981,1 個月前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 19906142,1 個月前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 12734305,1 個月前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 19883233,2 個月前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 19690659,4 個月前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 19638054,5 個月前
- 評價 5 分,滿分 5 分來自 Firefox 使用者 19625368,6 個月前
- 評價 1 分,滿分 5 分來自 Firefox 使用者 19617462,6 個月前
- 評價 5 分,滿分 5 分來自 Robin Filer,7 個月前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,10 個月前Erweiterung funktioniert da los, so wie ich mir das vorstelle. Danke für die gute Arbeit
- 評價 5 分,滿分 5 分來自 Firefox 使用者 19145735,1 年前