Skip to content

Instantly share code, notes, and snippets.

@oieioi
Created November 19, 2021 02:19
Show Gist options
  • Save oieioi/940f98826edc0293292702085448a684 to your computer and use it in GitHub Desktop.
Save oieioi/940f98826edc0293292702085448a684 to your computer and use it in GitHub Desktop.
Disable ctrl+h to return page in New Relic
// ==UserScript==
// @name Disable ctrl+h to return page
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Disable ctrl+h to return page
// @author oieioi
// @match https://one.newrelic.com/launcher/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.addEventListener('keydown', (event) => {
if (event.key === 'h' && event.ctrlKey) event.stopPropagation()
})
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment