Tampermonkey értékelései
Tampermonkey szerző: Jan Biniok
5229 értékelés
Fejlesztői válasz
közzétéve: 8 éveWebExtensions are not allowed to run at addons.mozilla.org by design:
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Your_first_WebExtension#Testing- Csillagos értékelés: 5 / 5készítette: Firefox felhasználó 12239101, 8 éveThanks 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";
})();Fejlesztői válasz
közzétéve: 8 éve// ==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);
};
})(); - Csillagos értékelés: 5 / 5készítette: Firefox felhasználó 13165692, 8 éve
- Csillagos értékelés: 5 / 5készítette: Firefox felhasználó 13148874, 8 éve很不错的一个插件,从使用开始就一直安装着,推荐大家安装
- Csillagos értékelés: 5 / 5készítette: mindfuldev, 8 éveI 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.
- Csillagos értékelés: 5 / 5készítette: Firefox felhasználó 13146072, 8 éve
- Csillagos értékelés: 1 / 5készítette: Firefox felhasználó 12960771, 8 éve
- Csillagos értékelés: 5 / 5készítette: Firefox felhasználó 13138499, 8 éve
- Csillagos értékelés: 5 / 5készítette: Firefox felhasználó 13128494, 9 éve
- Csillagos értékelés: 5 / 5készítette: Firefox felhasználó 13121577, 9 éve
- Csillagos értékelés: 5 / 5készítette: Firefox felhasználó 13121577, 9 éve
- Csillagos értékelés: 1 / 5készítette: Firefox felhasználó 13113484, 9 éve
- Csillagos értékelés: 5 / 5készítette: Firefox felhasználó 13113484, 9 éve
- Csillagos értékelés: 5 / 5készítette: Firefox felhasználó 13091984, 9 éve
- Csillagos értékelés: 5 / 5készítette: Firefox felhasználó 13087410, 9 éve
- Csillagos értékelés: 2 / 5készítette: Firefox felhasználó 13062326, 9 éve
- Csillagos értékelés: 3 / 5készítette: Firefox felhasználó 12849453, 9 éveBreaks 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.Fejlesztői válasz
közzétéve: 9 éveAll 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.