Reviews for Tampermonkey
Tampermonkey by Jan Biniok
Response by Jan Biniok
Developer response
posted 8 years ago// ==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);
};
})();
5,159 reviews
- Rated 5 out of 5by Stellasis, 18 hours ago
- Rated 5 out of 5by Firefox user 13443993, a day ago
- Rated 5 out of 5by Proximal 𝕏, 2 days ago
- Rated 5 out of 5by bsp, 4 days ago
- Rated 5 out of 5by David, 6 days ago
- Rated 5 out of 5by Firefox user 19084268, 7 days ago
- Rated 5 out of 5by alfa, 9 days ago
- Rated 1 out of 5by LaserMoai, 11 days ago
- Rated 5 out of 5by zhou, 13 days ago
- Rated 5 out of 5by Mike, 14 days ago
- Rated 5 out of 5by Firefox user 18590030, 15 days ago
- Rated 5 out of 5by Firefox user 19072892, 15 days ago
- Rated 5 out of 5by Firefox user 19071894, 15 days ago
- Rated 1 out of 5by Firefox user 19069891, 16 days ago
- Rated 5 out of 5by 肉肉, 18 days ago
- Rated 5 out of 5by Donnymk, 20 days ago
- Rated 5 out of 5by susu, 22 days ago
- Rated 5 out of 5by Firefox user 19051547, 23 days ago
- Rated 5 out of 5by Firefox user 19049340, 24 days ago
- Rated 1 out of 5by Ajaypal singh, 24 days ago
- Rated 5 out of 5by aleksandr-kulishov, a month ago