Greasy Fork is available in English.
reverts CRTL+SHIFT+LEFT/RIGHT shortcuts to selection behaviour on Chomebook
当前为
// ==UserScript==
// @name Fix Workflowy on Chromebook shortcuts
// @namespace Violentmonkey Scripts
// @match https://workflowy.com/*
// @grant none
// @description reverts CRTL+SHIFT+LEFT/RIGHT shortcuts to selection behaviour on Chomebook
// @version 0.0.1.20190802131521
// ==/UserScript==
document.addEventListener('keydown', function(event) {
if (event.ctrlKey && event.shiftKey && [37, 39].includes(event.keyCode)) {
event.stopImmediatePropagation();
return;
}
});