Block Save Keyboard Shortcut in Roam

For people who have a habit of hitting Ctrl+S and want to stop the browser save dialog from popping up

25.04.2020 itibariyledir. En son verisyonu görün.

// ==UserScript==
// @name        Block Save Keyboard Shortcut in Roam
// @namespace   Violentmonkey Scripts
// @match       https://roamresearch.com/*
// @version     1.0
// @author      everruler
// @description For people who have a habit of hitting Ctrl+S and want to stop the browser save dialog from popping up
// ==/UserScript==

document.addEventListener("keydown", function(e) {
  if (e.keyCode == 83 && (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey)) {
    e.preventDefault()
  }
}, false)