סקירות עבור Tampermonkey
Tampermonkey Jan Biniok מאת
5,229 דירוגים
תגובת המפתח
מועד פרסום: לפני 8 שניםWebExtensions are not allowed to run at addons.mozilla.org by design:
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Your_first_WebExtension#Testing- דירוג 5 מתוך 5מאת משתמש Firefox 12239101, לפני 8 שניםThanks 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";
})();תגובת המפתח
מועד פרסום: לפני 8 שנים// ==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);
};
})(); - דירוג 5 מתוך 5מאת משתמש Firefox 13165692, לפני 8 שנים
- דירוג 5 מתוך 5מאת mindfuldev, לפני 8 שניםI 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.
- דירוג 5 מתוך 5מאת משתמש Firefox 13146072, לפני 8 שנים
- דירוג 1 מתוך 5מאת משתמש Firefox 12960771, לפני 8 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 13138499, לפני 8 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 13128494, לפני 9 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 13121577, לפני 9 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 13121577, לפני 9 שנים
- דירוג 1 מתוך 5מאת משתמש Firefox 13113484, לפני 9 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 13113484, לפני 9 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 13091984, לפני 9 שנים
- דירוג 5 מתוך 5מאת משתמש Firefox 13087410, לפני 9 שנים
- דירוג 2 מתוך 5מאת משתמש Firefox 13062326, לפני 9 שנים
- דירוג 3 מתוך 5מאת משתמש Firefox 12849453, לפני 9 שניםBreaks 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.תגובת המפתח
מועד פרסום: לפני 9 שניםAll 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.