بازخوردها برای Greasemonkey
Greasemonkey Anthony Lieuallen by
۱۵۶ reviews
- Rated ۱ out of 5by walktohere, ۲ سال پیشDoes not work very unhappy tampermonkey works on same scripts get it fixed
- Rated ۱ out of 5by Jh, ۲ سال پیش
- Rated ۱ out of 5by Firefox user 15288895, ۲ سال پیش
- Rated ۱ out of 5by Firefox user 15794822, ۲ سال پیش
- Rated ۱ out of 5by Firefox user 15749634, ۲ سال پیش
- Rated ۱ out of 5by Rhiex, ۲ سال پیش
- Rated ۱ out of 5by Firefox user 15722294, ۲ سال پیش
- Rated ۱ out of 5by Firefox user 15509678, ۳ سال پیش
- Rated ۱ out of 5by Owyn, ۳ سال پیشAwful 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 - Rated ۱ out of 5by Firefox user 15252965, ۳ سال پیش
- Rated ۱ out of 5by Firefox user 15185090, ۳ سال پیش
- Rated ۱ out of 5by محمد المعلا, ۳ سال پیش
- Rated ۱ out of 5by Firefox user 14713213, ۳ سال پیشDon't show the icon in YouTube. I'm on Windows 10, Mozilla Firefox
- Rated ۱ out of 5by Firefox user 15134277, ۳ سال پیش
- Rated ۱ out of 5by Firefox user 15074868, ۳ سال پیش
- Rated ۱ out of 5by Firefox user 12324300, ۳ سال پیش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. - Rated ۱ out of 5by Firefox user 14951165, ۳ سال پیش
- Rated ۱ out of 5by gpat, ۳ سال پیش
- Rated ۱ out of 5by Firefox user 14691116, ۳ سال پیش
- Rated ۱ out of 5by AlwayFlyingHigh, ۳ سال پیش
- Rated ۱ out of 5by Eli, ۴ سال پیشCompletely breaks web page functionality (i.e. youtube) causing unpredictable behavior.