Tampermonkey incelemeleri
Tampermonkey geliştiren: Jan Biniok
4.550 inceleme
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 12239101, 8 yıl önceThanks 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";
})();Geliştiricinin yanıtı
gönderilme: 8 yıl önce// ==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 üzerinden 5 puanyazan: Firefox kullanıcısı 13165692, 8 yıl önce
- 5 üzerinden 5 puanyazan: mindfuldev, 8 yıl önceI 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 üzerinden 5 puanyazan: Firefox kullanıcısı 13146072, 8 yıl önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 13138499, 8 yıl önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 13128494, 8 yıl önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 13121577, 8 yıl önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 13121577, 8 yıl önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 13113484, 8 yıl önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 13091984, 8 yıl önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 13087410, 8 yıl önce
- 5 üzerinden 5 puanyazan: dxxvi, 9 yıl önceCan it be fixed please?
Edit 1: could you post the link to the development channel?Geliştiricinin yanıtı
gönderilme: 9 yıl öncePlease use the development channel, version 4.3.5430beta. A new stable version was already uploaded on 2017-04-11, but review takes very long these days. Sorry. - 5 üzerinden 5 puanyazan: Firefox kullanıcısı 12991370, 9 yıl önce