Critiques pour Tampermonkey
Tampermonkey par Jan Biniok
5 277 notes
- Noté 5 sur 5par Utilisateur ou utilisatrice 13216083 de Firefox, il y a 9 ansJust a fast update for you hun, but i'm sure someone has said something. The dark theme on 4.4.5533beta is great. But the buttons are white and not readable. That is the only thing that still needs to be coded for the dark theme. Other than that all looks good.
- Noté 4 sur 5par Utilisateur ou utilisatrice 13228304 de Firefox, il y a 9 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 13225515 de Firefox, il y a 9 ansIsssou la chancla yantagaki issou banador parfait
- Noté 5 sur 5par Utilisateur ou utilisatrice 13225154 de Firefox, il y a 9 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 13224180 de Firefox, il y a 9 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 13224017 de Firefox, il y a 9 ans
- Noté 5 sur 5par Riska Asmara, il y a 9 ansNo Need to restart, better Icon on menu, not offering annoying opt-in, and ease to use interface
- Noté 2 sur 5par Utilisateur ou utilisatrice 13099368 de Firefox, il y a 9 ansNot working on nightly ver for Android.
- Noté 5 sur 5par Utilisateur ou utilisatrice 13205967 de Firefox, il y a 9 ans听别人说这个插件非常好用,找了好久,终于找到了。。很满意
- Noté 5 sur 5par Utilisateur ou utilisatrice 13197248 de Firefox, il y a 9 ans
- Noté 4 sur 5par parazite, il y a 9 ans
- Noté 5 sur 5par Utilisateur ou utilisatrice 13182950 de Firefox, il y a 9 ans
Réponse du développeur
mis en ligne : il y a 9 ansWebExtensions are not allowed to run at addons.mozilla.org by design:
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Your_first_WebExtension#Testing- Noté 5 sur 5par Utilisateur ou utilisatrice 12239101 de Firefox, il y a 9 ansThanks for correcting me, Jan.
The following script doesn't always kick in on Github issues pages, therefore the add-on simply is unreliable.
// ==UserScript==
// @name Github - Color issues title red.
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://github.com/*/*/issues/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var element = document.querySelector(".js-issue-title");
element.style.color = "red";
})();Réponse du développeur
mis en ligne : il y a 9 ans// ==UserScript==
// @name Github - Color issues title red.
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://github.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var run = function(url) {
if (url.match(/https:\/\/github\.com\/.*\/.*\/issues\/.*/)) {
var element = document.querySelector(".js-issue-title");
element.style.color = "red";
}
};
run(location.href);
var pS = window.history.pushState;
var rS = window.history.replaceState;
window.history.replaceState = function(a, b, url) {
run(url);
rS.apply(this, arguments);
};
window.history.pushState = function(a, b, url) {
run(url);
pS.apply(this, arguments);
};
})();