Greasemonkey 油猴子 的评价
Greasemonkey 油猴子 作者: Anthony Lieuallen
156 条评价
- 来自 walktohere,2 年前评分 1 / 5Does not work very unhappy tampermonkey works on same scripts get it fixed
- 来自 Jh,2 年前评分 1 / 5
- 来自 Firefox 用户 15288895,2 年前评分 1 / 5
- 来自 Firefox 用户 15794822,2 年前评分 1 / 5
- 来自 Firefox 用户 15749634,2 年前评分 1 / 5
- 来自 Rhiex,2 年前评分 1 / 5
- 来自 Firefox 用户 15722294,2 年前评分 1 / 5
- 来自 Firefox 用户 15509678,3 年前评分 1 / 5
- 来自 Owyn,3 年前评分 1 / 5Awful compatibility update policies which scared all users away to TamperMonkey with an adequate dev.
Also lacks a lot of features other (normal) script managers easily have.
Most of the userscripts on the internet won't even work on this manager due to written above.
Plus eternally bad UI nobody cares about - 来自 Firefox 用户 15252965,3 年前评分 1 / 5
- 来自 Firefox 用户 15185090,3 年前评分 1 / 5
- 来自 محمد المعلا,3 年前评分 1 / 5
- 来自 Firefox 用户 14713213,3 年前评分 1 / 5Don't show the icon in YouTube. I'm on Windows 10, Mozilla Firefox
- 来自 Firefox 用户 15134277,3 年前评分 1 / 5
- 来自 Firefox 用户 15074868,3 年前评分 1 / 5
- 来自 Firefox 用户 12324300,3 年前评分 1 / 5Tried 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. - 来自 Firefox 用户 14951165,3 年前评分 1 / 5
- 来自 gpat,3 年前评分 1 / 5
- 来自 Firefox 用户 14691116,3 年前评分 1 / 5
- 来自 AlwayFlyingHigh,3 年前评分 1 / 5
- 来自 Eli,3 年前评分 1 / 5Completely breaks web page functionality (i.e. youtube) causing unpredictable behavior.