Skip to content

Instantly share code, notes, and snippets.

@Etuldan
Last active March 16, 2023 13:04
Show Gist options
  • Save Etuldan/519a40ad8581aa0dc61cecca0e128fc6 to your computer and use it in GitHub Desktop.
Save Etuldan/519a40ad8581aa0dc61cecca0e128fc6 to your computer and use it in GitHub Desktop.
Userscript : Google Sheet Bind F13
// ==UserScript==
// @name Disable F13 Bind
// @version 1.2
// @description Disable F13 bind on Google Sheet
// @match https://docs.google.com/spreadsheets/d/*
// @updateURL https://gist.github.com/Etuldan/519a40ad8581aa0dc61cecca0e128fc6/raw/GoogleSheetF13.user.js
// @downloadURL https://gist.github.com/Etuldan/519a40ad8581aa0dc61cecca0e128fc6/raw/GoogleSheetF13.user.js
// @author Etuldan
// @run-at document-start
// ==/UserScript==
document.addEventListener('keydown', function(event) {
if(event.keyCode == 124)
{
event.stopImmediatePropagation();
}
}, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment