Skip to content

Instantly share code, notes, and snippets.

@deevroman
Created March 1, 2025 12:06
Show Gist options
  • Select an option

  • Save deevroman/77b7c727db8b22b626a93c0f7056d503 to your computer and use it in GitHub Desktop.

Select an option

Save deevroman/77b7c727db8b22b626a93c0f7056d503 to your computer and use it in GitHub Desktop.
Key tester
// ==UserScript==
// @name Key tester
// @grant GM_info
// @match https://www.openstreetmap.org/*
// @run-at document-end
// ==/UserScript==
(() => {
document.addEventListener('keydown', (e) => {
alert(e.code);
}, false);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment