Recensioner för Tampermonkey
Tampermonkey av Jan Biniok
4 468 recensioner
- Betygsatt 5 av 5av Firefox-användare 13216083, för 8 år sedanJust 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.
- Betygsatt 5 av 5av Firefox-användare 13225515, för 8 år sedanIsssou la chancla yantagaki issou banador parfait
- Betygsatt 5 av 5av Firefox-användare 13225154, för 8 år sedan
- Betygsatt 5 av 5av Firefox-användare 13224180, för 8 år sedan
- Betygsatt 5 av 5av Firefox-användare 13224017, för 8 år sedan
- Betygsatt 5 av 5av Riska Asmara, för 8 år sedanNo Need to restart, better Icon on menu, not offering annoying opt-in, and ease to use interface
- Betygsatt 5 av 5av Firefox-användare 13197248, för 8 år sedan
- Betygsatt 5 av 5av Firefox-användare 13182950, för 8 år sedan
- Betygsatt 5 av 5av Firefox-användare 12239101, för 8 år sedanThanks 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";
})();Utvecklarens svar
postad för 8 år sedan// ==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);
};
})(); - Betygsatt 5 av 5av Firefox-användare 13165692, för 8 år sedan
- Betygsatt 5 av 5av mindfuldev, för 8 år sedanI moved from Greasemonkey because I have one issue with my script (GM_addStyle) and also because GM will stop working after 57. TM works great for me.