Reviews for Tampermonkey
Tampermonkey by Jan Biniok
4,976 reviews
- Rated 4 out of 5by Firefox user 13228304, 7 years ago
- Rated 5 out of 5by Firefox user 13225515, 7 years agoIsssou la chancla yantagaki issou banador parfait
- Rated 5 out of 5by Firefox user 13225154, 7 years ago
- Rated 5 out of 5by Firefox user 13224180, 7 years ago
- Rated 5 out of 5by Firefox user 13224017, 7 years ago
- Rated 5 out of 5by Riska Asmara, 7 years agoNo Need to restart, better Icon on menu, not offering annoying opt-in, and ease to use interface
- Rated 5 out of 5by Firefox user 13197248, 7 years ago
- Rated 4 out of 5by parazite, 7 years ago
- Rated 5 out of 5by Firefox user 13182950, 7 years ago
Developer response
posted 7 years agoWebExtensions are not allowed to run at addons.mozilla.org by design:
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Your_first_WebExtension#Testing- Rated 5 out of 5by Firefox user 12239101, 7 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";
})();Developer response
posted 7 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);
};
})(); - Rated 5 out of 5by Firefox user 13165692, 8 years ago