Last active
February 18, 2025 17:04
-
-
Save deevroman/d07f0cc0f09cafd9e50ebf3908148bbc to your computer and use it in GitHub Desktop.
debugger-bug.user.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Better osm.org | |
| // @version 0.1337.1337 | |
| // @author deevroman | |
| // @match https://www.openstreetmap.org/* | |
| // @namespace https://github.com/deevroman/better-osm-org | |
| // @sandbox JavaScript | |
| // @grant GM_info | |
| // @run-at document-end | |
| // ==/UserScript== | |
| console.log("start") | |
| const x = document.querySelector("body") | |
| debugger | |
| console.log("end") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment