Recenze doplňku Tampermonkey
Tampermonkey od Jan Biniok
4 469 recenzí
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 13235463, před 8 lety
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 13216083, před 8 letyJust 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.
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 13225515, před 8 letyIsssou la chancla yantagaki issou banador parfait
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 13225154, před 8 lety
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 13224180, před 8 lety
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 13224017, před 8 lety
- Hodnocení: 5 z 5od uživatele Riska Asmara, před 8 letyNo Need to restart, better Icon on menu, not offering annoying opt-in, and ease to use interface
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 13197248, před 8 lety
- Hodnocení: 5 z 5od uživatele co11ector, před 8 letygood!!!!!!!good!!!!!!!good!!!!!!!good!!!!!!!good!!!!!!!
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 13182950, před 8 lety
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 12239101, před 8 letyThanks 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";
})();Odpověď vývojáře
zveřejněno před 8 lety// ==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);
};
})(); - Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 13165692, před 8 lety