// ==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 https://update.greasyfork.icu/scripts/432952/%E5%B0%8F%E7%B1%B3%E4%BE%BF%E7%AD%BE%28%E7%AC%94%E8%AE%B0%29pdf%E5%AF%BC%E5%87%BA%E5%B7%A5%E5%85%B7.user.js
// @updateURL https://update.greasyfork.icu/scripts/432952/%E5%B0%8F%E7%B1%B3%E4%BE%BF%E7%AD%BE%28%E7%AC%94%E8%AE%B0%29pdf%E5%AF%BC%E5%87%BA%E5%B7%A5%E5%85%B7.meta.js
// ==/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();
})
);
});
})();