Skip to content

Instantly share code, notes, and snippets.

@smtm
Last active February 21, 2025 13:35
Show Gist options
  • Save smtm/35886042372ab20f10ddab3959afe274 to your computer and use it in GitHub Desktop.
Save smtm/35886042372ab20f10ddab3959afe274 to your computer and use it in GitHub Desktop.
Userscript J K L Scroll Navigation
// ==UserScript==
// @name JKL navigation
// @description Scrolling by pressing J K L
// @match *://*/*
// ==/UserScript==
document.addEventListener('keydown', function(event) {
if (event.key === 'j') {
window.scrollBy(0, 550); // Scrolls down
} else if (event.key === 'k') {
window.scrollBy(0, -550); // Scrolls up
} else if (event.key === 'l') {
window.scrollBy(0, -100); // Scrolls up 100
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment