For people who have a habit of hitting Ctrl+S and want to stop the browser save dialog from popping up
当前为
// ==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)