Greasy Fork is available in English.

correctif bug affichage

fr

  1. // ==UserScript==
  2. // @name correctif bug affichage
  3. // @namespace newtab
  4. // @include https://*.the-west.*
  5. // @version 3
  6. // @grant none
  7. // @description fr
  8. // ==/UserScript==
  9.  
  10. var bouton = document.createElement('button');
  11. bouton.innerHTML = 'clic';
  12. bouton.setAttribute('onclick', 'var text = document.getElementById("ui_topbar").innerHTML;document.getElementById("ui_topbar").innerHTML = text.replace(/ /g, " ");var text = document.getElementsByClassName("custom_unit_counter Octoberfest hasMousePopup with_log")[0].innerHTML;document.getElementsByClassName("custom_unit_counter Octoberfest hasMousePopup with_log")[0].innerHTML = text.replace(/ /g, " ");')
  13. bouton.setAttribute('style', 'z-index: 932;position: fixed;top: 0px;');
  14. document.body.appendChild(bouton)