Skip to content

Instantly share code, notes, and snippets.

@VeikkoLehmuskorpi
Last active February 24, 2021 16:19
Show Gist options
  • Select an option

  • Save VeikkoLehmuskorpi/3abbb78aec47ec488d6e916c030f7b92 to your computer and use it in GitHub Desktop.

Select an option

Save VeikkoLehmuskorpi/3abbb78aec47ec488d6e916c030f7b92 to your computer and use it in GitHub Desktop.
typings-shortcuts.user.js
// ==UserScript==
// @name Typings.gg Shortcuts
// @namespace veikko.dev/typings-shortcuts
// @version 0.1.1
// @description typings.gg shortcuts
// @author Veikko Lehmuskorpi
// @match https://typings.gg/
// @grant none
// ==/UserScript==
document.addEventListener('keydown', e => {
// Reset game on enter
if (e.key === 'Enter') {
setText();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment