NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Compteur de caractères pour titre de topic JVC // @namespace https://openuserjs.org/users/yannton // @version 0.1.2 // @description Compteur de caractères pour ne plus avoir ce message de fils de pute et faciliter la vie des kheys :cool: // @author Yannton // @match http://www.jeuxvideo.com/forums/0-51-0-1-0-1-0-blabla-18-25-ans.htm // @grant none // @license MIT // ==/UserScript== (function () { 'use strict'; const caracteres = document.getElementById('titre_topic'); caracteres.addEventListener('input', function () { document.getElementsByClassName('btn-ajouter-spotify')[0].innerHTML = `Il reste ${100 - caracteres.value.length} caractères.`; if (caracteres.value.length > 100) { document.getElementsByClassName('btn-ajouter-spotify')[0].innerHTML += " Y'a trop de caractères sale fou ! Hophophop on enlève des mots !" } }); })();