WorkFlowy CTRL SHIFT ARROW fix on Chromebook

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.

目前为 2023-06-01 提交的版本。查看 最新版本

// ==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://gf.qytechs.cn/users/1088658
// ==/UserScript==

document.addEventListener('keydown', function(event) {
  if (event.ctrlKey && event.shiftKey && [37, 39].includes(event.keyCode)) {
    event.stopImmediatePropagation();
  }
}, true);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址