Reviews for Tampermonkey
Tampermonkey by Jan Biniok
5,103 reviews
- Rated 5 out of 5by Firefox user 12239101, 8 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 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);
};
})(); - Rated 5 out of 5by Firefox user 13165692, 8 years ago
- Rated 5 out of 5by mindfuldev, 8 years agoI moved from Greasemonkey because I have one issue with my script (GM_addStyle) and also because GM will stop working after 57. TM works great for me.
- Rated 5 out of 5by Firefox user 13146072, 8 years ago
- Rated 1 out of 5by Firefox user 12960771, 8 years ago
- Rated 5 out of 5by Firefox user 13138499, 8 years ago
- Rated 5 out of 5by Firefox user 13128494, 8 years ago
- Rated 5 out of 5by Firefox user 13121577, 8 years ago
- Rated 5 out of 5by Firefox user 13121577, 8 years ago
- Rated 1 out of 5by Firefox user 13113484, 8 years ago
- Rated 5 out of 5by Firefox user 13113484, 8 years ago
- Rated 5 out of 5by Firefox user 13091984, 8 years ago
- Rated 5 out of 5by Firefox user 13087410, 8 years ago
- Rated 2 out of 5by Firefox user 13062326, 8 years ago
- Rated 3 out of 5by Firefox user 12849453, 8 years agoBreaks my ability to login to and pay via PayPal from Ebay...i finally tracked the issue to TamperMonkey via disabling all addons, then enabling them one by one...bam...TamperMonkey...
Doesnt help that what you think is the disable button in the toolbar icon when pressed, does nothing ...you have to go all the way into Tools->Addons to turn the bloody thing off
Ill go back to Greasemonkey or another alternative for now...
Edit (after dev's reply): Appreciate the reply, and i may revist in future! In the meantime i installed ViolentMonkey, with the same scripts i had in TM, and had no issues - VM was left enabled, and i was able to get through Ebay with no issues. Whatever was mangling ebay/paypal was doing so internally in TM, and not via any of the 3 scripts i had installed, which are site centric and not global. Side note, VM was a LOT faster than TM. Added a star for a speedy reply from dev. I hope you managed to fix it, its GUI is by far the best of all script managers, if you get the backend sorted ill be back.Developer response
posted 8 years agoAll of your issues should be fixed at version 4.3.5447beta from the development channel.
I've also uploaded a new stable version on 2017-04-11, but review takes very long these days (currently Queue Position: 79 of 242).
Sorry for any inconvenience.