// ==UserScript== // @name Script Hapoel Sans Bugs // @namespace http://tampermonkey.net/ // @version 0.1 // @description J'ai essayƩ de faire un script sans bugs... // @author 3lXouif_Hapoel (Positron) // @match https://www.jeuxvideo.com/* // @match http://www.jeuxvideo.com/* // @grant none // @downloadURL none // ==/UserScript== window.onload = replace() function replace() { var y = document.getElementsByTagName("P"); var i; for (i = 0; i < y.length; i++) { y[i].innerHTML = ((y[i].innerHTML.replace(":hapoel:", ":hapoel:")).replace(":hapoelia:", ":hapoelia:")).replace(":hapoel2:", ":hapoel2:") } } var userInput = document.getElementById('message_topic'); userInput.onkeyup = function() { if(document.getElementById('message_topic').indexOf(":hapoel:") !== -1 || document.getElementById('message_topic').indexOf(":hapoelia:") !== -1 || document.getElementById('message_topic').indexOf(":hapoel2:") !== -1){ replace() } };