Sending, receiving, and organizing email in Outlook on the web for business
Temporary solution (a little long-winded but I use alt-shift-arrow 20 times an email and got so annoyed by this problem I had to do something):
EDIT! PLEASE SEE BEN UNGURUN'S POST BELOW for a slightly tweaked version from someone who uses TamperMonkey more regularly than me :)
- For Chrome/Edge, install the TamperMonkey extension so you can add a UserScript (Firefox has UserScripts built-in I think)
- Add the following UserScript (modified from https://superuser.com/questions/168087/how-to-forbid-keyboard-shortcut-stealing-by-websites-in-firefox):
// ==UserScript==
// @name Disable Alt+shift+arrow interceptions
// @description Stop websites from highjacking keyboard shortcuts
//
// @run-at document-start
// @include https://outlook.office.com/*
// @grant none
// ==/UserScript==
// Keycode for arrow keys.
keycodes = [37, 38, 39, 40];
(window.opera ? document.body : document).addEventListener('keydown', function(e) {
if (keycodes.indexOf(e.keyCode) != -1 && e.shiftKey && e.altKey) {
e.cancelBubble = true;
e.stopImmediatePropagation();
}
return false;
}, !window.opera);