Tampermonkey에 대한 리뷰
Tampermonkey 제작자: Jan Biniok
리뷰 5,248개
- 5점 만점에 5점Firefox 사용자 13225154 님, 9년 전
- 5점 만점에 5점Firefox 사용자 13224180 님, 9년 전
- 5점 만점에 5점Firefox 사용자 13224017 님, 9년 전
- 5점 만점에 5점Riska Asmara 님, 9년 전No Need to restart, better Icon on menu, not offering annoying opt-in, and ease to use interface
- 5점 만점에 5점Firefox 사용자 13197248 님, 9년 전
- 5점 만점에 5점Firefox 사용자 13182950 님, 9년 전
개발자 답글
9년 전에 게시됨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 님, 9년 전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";
})();개발자 답글
9년 전에 게시됨// ==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 님, 9년 전