// ==UserScript== // @version 0.1 // @name WorkFlowy CTRL SHIFT ARROW fix on Chromebook // @description In Workflowy, it will fix the CTRL + SHIFT + [Left Arrow | Right Arrow] behaviour on Chromebook, making it select the text and not ident the task. // @license MIT // @match https://workflowy.com/ // @namespace https://greasyfork.org/users/1088658 // @downloadURL none // ==/UserScript== document.addEventListener('keydown', function(event) { if (event.ctrlKey && event.shiftKey && [37, 39].includes(event.keyCode)) { event.stopImmediatePropagation(); } }, true);