// ==UserScript== // @name 印象笔记网页版禁用保存网页功能 disable page saving function for evernote/yingxiangbiji // @namespace http://tampermonkey.net/ // @version 1.0 // @description 印象笔记网页版禁用保存网页功能 // @author NEOTSO // @match https://app.yinxiang.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... document.onkeydown = function(e) { if ((e.ctrlKey || e.metaKey) && e.keyCode === 83) e.preventDefault(); } })();