Munzee Map Zoom

Remove zoom limit

  1. // ==UserScript==
  2. // @name Munzee Map Zoom
  3. // @version 0.1
  4. // @description Remove zoom limit
  5. // @author rabe85
  6. // @match https://www.munzee.com/map
  7. // @match https://www.munzee.com/map/*
  8. // @match https://www.munzee.com/specials
  9. // @match https://www.munzee.com/specials/*
  10. // @match https://www.munzee.com/places
  11. // @match https://www.munzee.com/places/*
  12. // @match https://www.munzee.com/gardens
  13. // @match https://www.munzee.com/gardens/*
  14. // @match https://www.munzee.com/settings
  15. // @match https://www.munzee.com/settings/*
  16. // @match https://www.munzee.com/m/*/map/deploys
  17. // @match https://www.munzee.com/m/*/map/deploys/*
  18. // @match https://www.munzee.com/m/*/*/map
  19. // @match https://www.munzee.com/m/*/*/map/*
  20. // @match https://www.munzee.com/m/*/*/admin/map
  21. // @match https://www.munzee.com/m/*/*/admin/map/*
  22. // @match https://statzee.munzee.com/player/where
  23. // @match https://statzee.munzee.com/player/where/*
  24. // @grant none
  25. // @namespace https://gf.qytechs.cn/users/156194
  26. // ==/UserScript==
  27.  
  28. (function() {
  29. 'use strict';
  30. function munzee_map() {
  31.  
  32. // Remove map zoom limit
  33. map.setMinZoom(0);
  34.  
  35. }
  36.  
  37.  
  38. // DOM vollständig aufgebaut?
  39. if (/complete|interactive|loaded/.test(document.readyState)) {
  40. munzee_map();
  41. } else {
  42. document.addEventListener("DOMContentLoaded", munzee_map, false);
  43. }
  44.  
  45. })();

QingJ © 2025

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