Tampermonkey のレビュー
Tampermonkey 作成者: Jan Biniok
合計レビュー数: 5,257
- 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年前)
- 5 段階中 5 の評価mindfuldev によるレビュー (9年前)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 によるレビュー (9年前)
- 5 段階中 1 の評価Firefox ユーザー 12960771 によるレビュー (9年前)
- 5 段階中 5 の評価Firefox ユーザー 13138499 によるレビュー (9年前)
- 5 段階中 5 の評価Firefox ユーザー 13128494 によるレビュー (9年前)
- 5 段階中 5 の評価Firefox ユーザー 13121577 によるレビュー (9年前)
- 5 段階中 5 の評価Firefox ユーザー 13121577 によるレビュー (9年前)
- 5 段階中 1 の評価Firefox ユーザー 13113484 によるレビュー (9年前)
- 5 段階中 5 の評価Firefox ユーザー 13113484 によるレビュー (9年前)
- 5 段階中 5 の評価Firefox ユーザー 13091984 によるレビュー (9年前)