Critiques pour Greasemonkey
Greasemonkey par Anthony Lieuallen
173 notes
- Noté 1 sur 5par Utilisateur ou utilisatrice 15722294 de Firefox, il y a 6 ans
- Noté 1 sur 5par Utilisateur ou utilisatrice 6222996 de Firefox, il y a 6 ansAfter the update, it became unpleasant to use
- Noté 1 sur 5par Utilisateur ou utilisatrice 15509678 de Firefox, il y a 6 ans
- Noté 1 sur 5par Utilisateur ou utilisatrice 15218065 de Firefox, il y a 7 ansI can not create a new userscript.
- Noté 1 sur 5par Owyn, il y a 7 ansAwful 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 - Noté 1 sur 5par Utilisateur ou utilisatrice 15252965 de Firefox, il y a 7 ans
- Noté 1 sur 5par Utilisateur ou utilisatrice 15185090 de Firefox, il y a 7 ans
- Noté 1 sur 5par محمد المعلا, il y a 7 ans
- Noté 1 sur 5par Utilisateur ou utilisatrice 14713213 de Firefox, il y a 7 ansDon't show the icon in YouTube. I'm on Windows 10, Mozilla Firefox
- Noté 1 sur 5par Utilisateur ou utilisatrice 15134277 de Firefox, il y a 7 ans
- Noté 1 sur 5par Utilisateur ou utilisatrice 15074868 de Firefox, il y a 7 ans
- Noté 1 sur 5par Utilisateur ou utilisatrice 12324300 de Firefox, il y a 7 ansTried 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. - Noté 1 sur 5par Utilisateur ou utilisatrice 14951165 de Firefox, il y a 7 ans
- Noté 1 sur 5par gpat, il y a 7 ans
- Noté 1 sur 5par Utilisateur ou utilisatrice 14691116 de Firefox, il y a 7 ans
- Noté 1 sur 5par AlwayFlyingHigh, il y a 7 ans
- Noté 1 sur 5par Eli, il y a 7 ansCompletely breaks web page functionality (i.e. youtube) causing unpredictable behavior.
- Noté 1 sur 5par FanEcchyy, il y a 7 ans
- Noté 1 sur 5par Utilisateur ou utilisatrice 14517137 de Firefox, il y a 7 ansManipuler Java c'est utile mais dans le même temps greasemonkey accède à une quantité de données personnelles illimitées et ça ce n'est pas acceptable.
- Noté 1 sur 5par Utilisateur ou utilisatrice 14603724 de Firefox, il y a 7 ans
- Noté 1 sur 5par Utilisateur ou utilisatrice 14603575 de Firefox, il y a 7 ans
- Noté 1 sur 5par Anton Klimov, il y a 7 ansThe documentation is awful. It doesn't work and I don't understand why.
- Noté 1 sur 5par Utilisateur ou utilisatrice 13667296 de Firefox, il y a 7 ans
- Noté 1 sur 5par Utilisateur ou utilisatrice 14433663 de Firefox, il y a 8 ans