Retour au sujet

Avatar de DoYouEvenPrayz DoYouEvenPrayz
Du coup quand on installe ça dans TamperMonkey ça marche cimer key https://image.noelshack.com/minis/2016/48/1480747392-picsart-12-03-07-22-54.png
// ==UserScript==
// @name pseudo bleu
// @namespace http://tampermonkey.net/
Apercite http://tampermonkey.net/

// @version 0.1
// @description try to take over the world!
// @author You
// @match https://avenoel.org/*
Apercite 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)'}
)
;})();