Greasy Fork

Greasy Fork is available in English.

印象笔记网页版禁用保存网页功能 disable page saving function for evernote/yingxiangbiji

印象笔记网页版禁用保存网页功能

目前为 2020-02-04 提交的版本,查看 最新版本

// ==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
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.onkeydown = function(e) {
        if ((e.ctrlKey || e.metaKey) && e.keyCode === 83) e.preventDefault();
    }
})();