Recensiones de Tampermonkey
Tampermonkey per Jan Biniok
5151 recensiones
- Classificate 4 de 5per Usator de Firefox 13228304, 8 år sidan
- Classificate 5 de 5per Usator de Firefox 13225515, 8 år sidanIsssou la chancla yantagaki issou banador parfait
- Classificate 5 de 5per Usator de Firefox 13225154, 8 år sidan
- Classificate 5 de 5per Usator de Firefox 13224180, 8 år sidan
- Classificate 5 de 5per Usator de Firefox 13224017, 8 år sidan
- Classificate 5 de 5per Riska Asmara, 8 år sidanNo Need to restart, better Icon on menu, not offering annoying opt-in, and ease to use interface
- Classificate 2 de 5per Usator de Firefox 13099368, 8 år sidanNot working on nightly ver for Android.
- Classificate 5 de 5per Usator de Firefox 13197248, 8 år sidan
- Classificate 4 de 5per parazite, 8 år sidan
- Classificate 5 de 5per Usator de Firefox 13182950, 8 år sidan
Responsa de disveloppator
publicate 8 år sidanWebExtensions are not allowed to run at cup.aihedy.com by design:
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Your_first_WebExtension#Testing- Classificate 5 de 5per Usator de Firefox 12239101, 8 år sidanThanks 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";
})();Responsa de disveloppator
publicate 8 år sidan// ==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);
};
})(); - Classificate 5 de 5per Usator de Firefox 13165692, 8 år sidan