小书签介绍:https://mp.weixin.qq.com/s/B3TvSDwAp9QeteLCQjIEuA
实现网页编辑的小书签:javascript:(function(){document.body.setAttribute('contenteditable', 'true');alert('%E5%B7%B2%E5%BC%80%E5%90%AF%E7%BD%91%E9%A1%B5%E7%BC%96%E8%BE%91%EF%BC%8C%E6%8C%89%20Esc%20%E5%8F%96%E6%B6%88%EF%BC%81');document.onkeydown = function (e) {e = e || window.event;if(e.keyCode==27){document.body.setAttribute('contenteditable', 'false');}}})();