Skip to content

Instantly share code, notes, and snippets.

@eagletmt
Last active February 3, 2016 23:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eagletmt/30ee1d1c35b2b3e0986d to your computer and use it in GitHub Desktop.
Save eagletmt/30ee1d1c35b2b3e0986d to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Disable GitHub toolbar hotkey
// @namespace https://wanko.cc
// @include https://github.com/*
// @version 1
// @grant none
// ==/UserScript==
(function() {
var nodes = document.querySelectorAll('.js-toolbar-item[data-toolbar-hotkey]'), i;
for (i = 0; i < nodes.length; i++) {
nodes[i].removeAttribute('data-toolbar-hotkey');
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment