IQRPG Header + animation remover

remove the header graphic and the auto animation

  1. // ==UserScript==
  2. // @name IQRPG Header + animation remover
  3. // @namespace https://www.iqrpg.com/
  4. // @version 0.4
  5. // @description remove the header graphic and the auto animation
  6. // @author euphone
  7. // @match https://*.iqrpg.com/*
  8. // @require https://code.jquery.com/jquery-latest.js
  9. // @grant none
  10. // ==/UserScript==
  11. $(document).ready(() => {
  12. setTimeout(() => {
  13. $('.header').remove();
  14. $('.action-timer__overlay').remove();
  15. }, 200);
  16. });