Du coup quand on installe ça dans TamperMonkey ça marche cimer key 
// ==UserScript==
// @name pseudo bleu
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://avenoel.org/*
// @grant none
// ==/UserScript==
(function() {
$('.topics-author a, .message-username a').filter(function ()
{ return $(this).text() === 'Pyjama';}).css({color: 'rgb(0,191,255)'}
)
;})();

// @name pseudo bleu
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://avenoel.org/*
// @grant none
// ==/UserScript==
(function() {
$('.topics-author a, .message-username a').filter(function ()
{ return $(this).text() === 'Pyjama';}).css({color: 'rgb(0,191,255)'}
)
;})();