Reviews for Tampermonkey
Tampermonkey by Jan Biniok
Response by Jan Biniok
Developer response
posted 9 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,280 reviews
- Rated 5 out of 5by 靜瑟之風, 2 days ago
- Rated 5 out of 5by Konrad Papala, 2 days ago
- Rated 5 out of 5by Человек найух а не Фаерфокс user 19966279, 5 days agoУстановил его и моге переводить видео без ЯГовно
- Rated 5 out of 5by ok, 6 days ago
- Rated 4 out of 5by Firefox user 16410709, 13 days ago
- Rated 5 out of 5by avtxr, 15 days ago
- Rated 5 out of 5by 终极虫, 16 days ago
- Rated 5 out of 5by Zenarchy, 22 days ago
- Rated 5 out of 5by Leo, 25 days ago
- Rated 5 out of 5by keinen, a month ago
- Rated 5 out of 5by Firefox user 19942049, a month ago
- Rated 5 out of 5by 逍遥子, a month ago
- Rated 5 out of 5by Firefox user 19819254, a month ago
- Rated 5 out of 5by Gofgo, a month ago
- Rated 5 out of 5by Rabid, a month ago
- Rated 5 out of 5by Тима, a month ago
- Rated 5 out of 5by Robert P, a month ago
- Rated 5 out of 5by Mark Andrew Gerads, a month ago
- Rated 2 out of 5by Olcyx, a month agoDe temps en temps cela ralentit considérablement ma vitesse de connexion. Je sais pas pourquoi, mais j'ai l'impression que ça fait des GROS trucs en arrière-plan pour que ça fasse ralentir comme ça.
Developer response
posted a month agoTampermonkey itself doesn't cause any connection traffic other than a few update checks. Maybe a script you installed is causing this? Otherwise please file a bug report at https://github.com/Tampermonkey/tampermonkey/issues - Rated 5 out of 5by tao, 2 months ago
- Rated 1 out of 5by zer0, 2 months agoThis Extension slop is non stop banners about anything other than just use it. You can keep your stupid banners and non stop interruptions I will look for another extension to handle scripts that this trash spam.
Developer response
posted a month agoWhat banners do you mean? Tampermonkey should not show any. Maybe a script you installed shows those? Otherwise please file a bug report at https://github.com/Tampermonkey/tampermonkey/issues - Rated 5 out of 5by TERROR, 2 months ago