// ==UserScript== // @name 小米便签(笔记)pdf导出工具 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 点击右上角打印按钮,打印本篇笔记。 // @author aqni // @match https://i.mi.com/note/h5 // @require https://cdn.jsdelivr.net/npm/jquery@3.1.1/dist/jquery.min.js // @require https://cdn.jsdelivr.net/npm/jQuery.print@1.5.1/jQuery.print.js // @grant none // @downloadURL none // ==/UserScript== (function(){ /* globals $*/ 'use strict'; const iconHTML=''; const btnCreate=``; const posSelect="span.action-group-record-21ymU"; const noteSelect="div.editor-body-VJW45"; $(document).ready(function(){ $(posSelect).prepend( $(btnCreate).click(function(){ $(noteSelect).print(); }) ); }); })();