Ocene za Tampermonkey
Tampermonkey — Jan Biniok
Ocena uporabnika Uporabnik Firefoxa 12239101
Ocenjeno z 5 od 5
— Uporabnik Firefoxa 12239101, pred 9 letiThanks 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";
})();
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";
})();
Odgovor razvijalca
objavljeno ob pred 8 leti// ==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);
};
})();
// @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);
};
})();
5234 ocen
- Ocenjeno z 1 od 5— keenoy, pred enim dnem
- Ocenjeno z 5 od 5— Eti, pred 5 dnevi
- Ocenjeno z 5 od 5— left2crazy, pred 9 dnevi
- Ocenjeno z 5 od 5— Vormix_Sv, pred 9 dnevi
- Ocenjeno z 5 od 5— melodic mustox, pred 10 dneviThanks to Tampermonkey, I can do a lot of things from my browser. I thanks with a donation, which I will repeat next month again for sure.
- Ocenjeno z 4 od 5— Carlos Páez, pred 20 dnevi
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 13035229, pred 21 dnevi
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 18699594, pred 23 dnevi
- Ocenjeno z 5 od 5— Antonio Johns, pred enim mesecem
- Ocenjeno z 5 od 5— Yuri, pred enim mesecem
- Ocenjeno z 5 od 5— Saphir, pred enim mesecem
- Ocenjeno z 5 od 5— Marlon Ruiz, pred enim mesecem
- Ocenjeno z 5 od 5— SergioDT, pred enim mesecemEssential. I can't imagine the internet without this extension.
- Ocenjeno z 5 od 5— biki, pred enim mesecem
- Ocenjeno z 5 od 5— Fabax, pred 2 mesecemaUserscript manager of choice since greasemonkey (sadly) doesn't cut it anymore with newer scripts.
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 19602270, pred 2 mesecema
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 17775866, pred 2 mesecema
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 14835773, pred 2 mesecema
- Ocenjeno z 5 od 5— ace, pred 2 mesecema
- Ocenjeno z 5 od 5— Uporabnik Firefoxa 18303502, pred 2 mesecema
- Ocenjeno z 5 od 5— dRAZY99, pred 2 mesecema
- Ocenjeno z 5 od 5— Th4t, pred 2 mesecema