Greasemonkey 油猴子 的评价
Greasemonkey 油猴子 作者: Anthony Lieuallen
Firefox 用户 12324300 的评价
评分 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.
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,270 条评价
- 评分 5 / 5来自 Firefox 用户 19145735, 15 天前
- 评分 5 / 5来自 AlienAnalytics21, 16 天前
- 评分 5 / 5来自 Firefox 用户 19072892, 1 个月前
- 评分 5 / 5来自 Firefox 用户 15244311, 2 个月前
- 评分 5 / 5来自 Firefox 用户 19026513, 2 个月前
- 评分 1 / 5来自 Firefox 用户 17681293, 2 个月前
- 评分 5 / 5来自 Firefox 用户 18903740, 4 个月前
- 评分 5 / 5来自 Firefox 用户 18353722, 4 个月前
- 评分 5 / 5来自 M. YC Sama~, 6 个月前
- 评分 5 / 5来自 Firefox 用户 18814634, 6 个月前
- 评分 5 / 5来自 Firefox 用户 18484777, 7 个月前
- 评分 5 / 5来自 Firefox 用户 18450251, 7 个月前
- 评分 5 / 5来自 Firefox 用户 18740199, 7 个月前
- 评分 5 / 5来自 Vasili Gulevich, 8 个月前
- 评分 5 / 5来自 Firefox 用户 18717782, 8 个月前