Greasemonkey 油猴子 的评价
Greasemonkey 油猴子 作者: Anthony Lieuallen
1,253 条评价
- 评分 5 / 5来自 Firefox 用户 15110948,5 年前
- 评分 5 / 5来自 Tim Johnston,6 年前
- 评分 2 / 5来自 hytromo,6 年前
- 评分 5 / 5来自 Firefox 用户 15076648,6 年前
- 评分 1 / 5来自 Firefox 用户 15074868,6 年前
- 评分 4 / 5来自 Firefox 用户 13197216,6 年前
- 评分 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 年前