Remove annoying stuff from Elden Ring Wiki Interactive Map

Removes annoying stuff

  1. // ==UserScript==
  2. // @name Remove annoying stuff from Elden Ring Wiki Interactive Map
  3. // @namespace http://your.namespace.com
  4. // @version 1.0
  5. // @description Removes annoying stuff
  6. // @author OpheOphe
  7. // @match https://eldenring.wiki.fextralife.com/Interactive+Map
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. $('#sidebar-wrapper').hide();
  16. $('.navbar').removeClass('visible-lg');
  17. $('.row').hide();
  18. $('.titlearea').hide();
  19. $('.hidden-xs').hide();
  20. $('.footer-sticky').hide();
  21. $('.navbar').hide();
  22. $('#wrapper').css('padding-left', '0');
  23. $('.fex-main').css('max-width', '100%');
  24. $('#ximap0').attr('style', 'height: 1200px');
  25. $('#ximap1').attr('style', 'height: 1200px');
  26. $('#ximap2').attr('style', 'height: 1200px');
  27. $('#ximap3').attr('style', 'height: 1200px');
  28. $('#mapD').attr('style', '');
  29. $('#mapC').attr('style', '');
  30. $('#mapB').attr('style', '');
  31. $('#mapA').attr('style', '');
  32.  
  33. $('html, body').animate({
  34. scrollTop: $('#mapD').offset().top
  35. }, 500);
  36. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址