Revisiones de Tampermonkey
Tampermonkey por Jan Biniok
4469 revisiones
- Se valoró con 5 de 5por Usuario de Firefox 13235463, hace 8 años
- Se valoró con 5 de 5por Usuario de Firefox 13216083, hace 8 añosJust 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.
- Se valoró con 5 de 5por Usuario de Firefox 13225515, hace 8 añosIsssou la chancla yantagaki issou banador parfait
- Se valoró con 5 de 5por Usuario de Firefox 13225154, hace 8 años
- Se valoró con 5 de 5por Usuario de Firefox 13224180, hace 8 años
- Se valoró con 5 de 5por Usuario de Firefox 13224017, hace 8 años
- Se valoró con 5 de 5por Riska Asmara, hace 8 añosNo Need to restart, better Icon on menu, not offering annoying opt-in, and ease to use interface
- Se valoró con 5 de 5por Usuario de Firefox 13197248, hace 8 años
- Se valoró con 5 de 5por co11ector, hace 8 añosgood!!!!!!!good!!!!!!!good!!!!!!!good!!!!!!!good!!!!!!!
- Se valoró con 5 de 5por Usuario de Firefox 13182950, hace 8 años
- Se valoró con 5 de 5por Usuario de Firefox 12239101, hace 8 añosThanks 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";
})();Respuesta del desarrollador
publicado el hace 8 años// ==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);
};
})(); - Se valoró con 5 de 5por Usuario de Firefox 13165692, hace 8 años