Recenzie doplnku Tampermonkey
Tampermonkey Autor: Jan Biniok
5 244 recenzií
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 13224017, pred 9 rokmi
- Hodnotenie: 5 z 5autor: Riska Asmara, pred 9 rokmiNo Need to restart, better Icon on menu, not offering annoying opt-in, and ease to use interface
- Hodnotenie: 2 z 5autor: Používateľ Firefoxu - 13099368, pred 9 rokmiNot working on nightly ver for Android.
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 13197248, pred 9 rokmi
- Hodnotenie: 5 z 5autor: co11ector, pred 9 rokmigood!!!!!!!good!!!!!!!good!!!!!!!good!!!!!!!good!!!!!!!
- Hodnotenie: 4 z 5autor: parazite, pred 9 rokmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 13182950, pred 9 rokmi
Odpoveď od vývojára
uverejnené pred 9 rokmiWebExtensions are not allowed to run at addons.mozilla.org by design:
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Your_first_WebExtension#Testing- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 12239101, pred 9 rokmiThanks 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";
})();Odpoveď od vývojára
uverejnené pred 9 rokmi// ==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);
};
})(); - Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 13165692, pred 9 rokmi
- Hodnotenie: 5 z 5autor: mindfuldev, pred 9 rokmiI 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.
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 13146072, pred 9 rokmi
- Hodnotenie: 1 z 5autor: Používateľ Firefoxu - 12960771, pred 9 rokmi