Sono particolarmente interessato a disabilitare il pulsante "T".
Sono particolarmente interessato a disabilitare il pulsante "T".
Risposte:
Fondamentalmente copiando la risposta da superuser.com collegata da Tom Woodward nei commenti. Ho cambiato solo keycode e url.
È lo script Greasemonkey che disabilita il collegamento "T". Supportato dai principali browser (potrebbe essere necessaria / utile l'estensione come Greasemonkey per Firefox / Tampermonkey per Chrome).
// Your code here...
// ==UserScript==
// @name Disable keyboard shortcuts
// @description Stop websites from highjacking keyboard shortcuts
//
// @run-at document-start
// @include *github.com*
// @grant none
// ==/UserScript==
keycodes = [84] // Keycode for 'T', add more keycodes to disable other key captures
document.addEventListener('keydown', function(e) {
// alert(e.keyCode); //uncomment to find out the keycode for any given key
if (keycodes.indexOf(e.keyCode) != -1)
{
e.cancelBubble = true;
e.stopImmediatePropagation();
}
return false;
});