Recenzje dodatku Tampermonkey
Tampermonkey Autor: Jan Biniok
Autor recenzji: Użytkownik Firefoksa 12239101
Ocena: 5/5
Autor: Użytkownik Firefoksa 12239101, 9 lat temuThanks 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";
})();
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";
})();
Odpowiedź autora
Data: 9 lat temu// ==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);
};
})();
// @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);
};
})();
5275 recenzji
- Ocena: 4/5Autor: Użytkownik Firefoksa 16410709, 4 dni temu
- Ocena: 5/5Autor: avtxr, 6 dni temu
- Ocena: 5/5Autor: 终极虫, 8 dni temu
- Ocena: 5/5Autor: Zenarchy, 13 dni temu
- Ocena: 5/5Autor: Leo, 16 dni temu
- Ocena: 5/5Autor: keinen, 18 dni temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 19942049, 22 dni temu
- Ocena: 5/5Autor: 逍遥子, 23 dni temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 19819254, 23 dni temu
- Ocena: 5/5Autor: Gofgo, 25 dni temu
- Ocena: 5/5Autor: Rabid, miesiąc temu
- Ocena: 5/5Autor: Тима, miesiąc temu
- Ocena: 5/5Autor: Robert P, miesiąc temu
- Ocena: 5/5Autor: Mark Andrew Gerads, miesiąc temu
- Ocena: 2/5Autor: Olcyx, miesiąc temuDe temps en temps cela ralentit considérablement ma vitesse de connexion. Je sais pas pourquoi, mais j'ai l'impression que ça fait des GROS trucs en arrière-plan pour que ça fasse ralentir comme ça.
Odpowiedź autora
Data: 24 dni temuTampermonkey itself doesn't cause any connection traffic other than a few update checks. Maybe a script you installed is causing this? Otherwise please file a bug report at https://github.com/Tampermonkey/tampermonkey/issues - Ocena: 5/5Autor: tao, miesiąc temu
- Ocena: 1/5Autor: zer0, miesiąc temuThis Extension slop is non stop banners about anything other than just use it. You can keep your stupid banners and non stop interruptions I will look for another extension to handle scripts that this trash spam.
Odpowiedź autora
Data: 24 dni temuWhat banners do you mean? Tampermonkey should not show any. Maybe a script you installed shows those? Otherwise please file a bug report at https://github.com/Tampermonkey/tampermonkey/issues - Ocena: 5/5Autor: TERROR, miesiąc temu
- Ocena: 1/5Autor: cba012, 2 miesiące temuHas hidden Google Analytics and is close-source - no thanks. An extension of this privilege level needs to be fully transparent. It also begs for donations at an abnormally high rate.
Use ViolentMonkey instead.Odpowiedź autora
Data: 24 dni temuThere is no Google Analytics; I use a self‑hosted Matomo instance, which is disabled by default.
The extension asks for a donation after two weeks of usage. A click at "I don't want to contribute" makes Tampermonkey never ask again.
If you see different behavior, then please file a bug report at https://github.com/Tampermonkey/tampermonkey/issues - Ocena: 1/5Autor: Użytkownik Firefoksa 17501884, 2 miesiące temu数ヶ月前の更新の際、これまで作ってきたユーザースクリプトのデータが全て消滅しました。
あらゆるデータベースファイル、削除されたデータ等を探しても残っておらず、途方もない損失に嘆きましたが、少しずつ復旧させてきました。
そして今日、Firefoxを再起動した際、再び何かのトラブルで全てのユーザースクリプトが消滅しました。
もうこれ以上信頼を預けることはできません。ViolentMonkey等への移行を速やかに行います。 - Ocena: 5/5Autor: Użytkownik Firefoksa 12859804, 2 miesiące temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 19828004, 2 miesiące temu