Đánh giá cho Tampermonkey
Tampermonkey bởi Jan Biniok
5.241 đánh giá
- Xếp hạng 5 trong số 5bởi Riska Asmara, 9 năm trướcNo Need to restart, better Icon on menu, not offering annoying opt-in, and ease to use interface
- Xếp hạng 2 trong số 5bởi Người dùng Firefox 13099368, 9 năm trướcNot working on nightly ver for Android.
- Xếp hạng 5 trong số 5bởi Người dùng Firefox 13197248, 9 năm trước
- Xếp hạng 5 trong số 5bởi co11ector, 9 năm trướcgood!!!!!!!good!!!!!!!good!!!!!!!good!!!!!!!good!!!!!!!
- Xếp hạng 4 trong số 5bởi parazite, 9 năm trước
- Xếp hạng 5 trong số 5bởi Người dùng Firefox 13182950, 9 năm trước
Phản hồi của nhà phát triển
đã đăng 9 năm trướcWebExtensions are not allowed to run at addons.mozilla.org by design:
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Your_first_WebExtension#Testing- Xếp hạng 5 trong số 5bởi Người dùng Firefox 12239101, 9 năm trướcThanks 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";
})();Phản hồi của nhà phát triển
đã đăng 9 năm trước// ==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);
};
})(); - Xếp hạng 5 trong số 5bởi Người dùng Firefox 13165692, 9 năm trước
- Xếp hạng 5 trong số 5bởi mindfuldev, 9 năm trướcI 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.
- Xếp hạng 5 trong số 5bởi Người dùng Firefox 13146072, 9 năm trước
- Xếp hạng 1 trong số 5bởi Người dùng Firefox 12960771, 9 năm trước
- Xếp hạng 5 trong số 5bởi Người dùng Firefox 13138499, 9 năm trước
- Xếp hạng 5 trong số 5bởi Người dùng Firefox 13128494, 9 năm trước