OWOP Maps

Map system for OWOP, with included maps

  1. // ==UserScript==
  2. // @name OWOP Maps
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description Map system for OWOP, with included maps
  6. // @author Mizu
  7. // @match https://ourworldofpixels.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=ourworldofpixels.com
  9. // @grant none
  10. // @license GPL-3.0
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. // create script element
  16. var script = document.createElement('script');
  17. script.type = 'text/javascript';
  18. script.src = 'https://raw.githubusercontent.com/Rexxt/OWOP-mods/main/maps.js';
  19. // append script to document
  20. document.querySelector('head').appendChild(script);
  21. })();