Reviews for Tampermonkey
Tampermonkey by Jan Biniok
Review by Firefox user 12239101
Rated 5 out of 5
by Firefox user 12239101, 9 years agoThanks 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";
})();
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,287 reviews
- Rated 5 out of 5by Maciej, 6 days ago
- Rated 5 out of 5by feelc, 8 days ago
- Rated 5 out of 5by NOIN, 8 days ago
- Rated 5 out of 5by Firefox user 13135296, 10 days ago
- Rated 5 out of 5by Firefox user 20015873, 11 days ago
- Rated 5 out of 5by Firefox user 14604126, 11 days ago
- Rated 5 out of 5by SEBAS204, 15 days ago
- Rated 5 out of 5by Nikitamce, 20 days agoРаботает в фаерфокс намного лучше с скриптами чем виолет манки. Проверил на скриптах стима. Так что всем советую
- Rated 5 out of 5by Mobina, 23 days ago
- Rated 5 out of 5by 靜瑟之風, a month ago
- Rated 5 out of 5by Konrad Papala, a month ago
- Rated 5 out of 5by Человек найух а не Фаерфокс user 19966279, a month agoУстановил его и моге переводить видео без ЯГовно
- Rated 5 out of 5by ok, a month ago
- Rated 4 out of 5by Firefox user 16410709, a month ago
- Rated 5 out of 5by avtxr, a month ago
- Rated 5 out of 5by 终极虫, a month ago
- Rated 5 out of 5by Zenarchy, 2 months ago
- Rated 5 out of 5by Leo, 2 months ago
- Rated 5 out of 5by keinen, 2 months ago
- Rated 5 out of 5by Firefox user 19942049, 2 months ago
- Rated 5 out of 5by 逍遥子, 2 months ago
- Rated 5 out of 5by Firefox user 19819254, 2 months ago