您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This scripts shows the internal "evernote:///" URI of a note
当前为
// ==UserScript== // @name Evernote Web in-app note link // @namespace http://andrealazzarotto.com/ // @version 1.0 // @description This scripts shows the internal "evernote:///" URI of a note // @match http://www.evernote.com/view/notebook/* // @match https://www.evernote.com/view/notebook/* // @copyright 2015, Andrea Lazzarotto // @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html // @require http://code.jquery.com/jquery-latest.min.js // ==/UserScript== var placeURI = function(url) { var selector = $("div[style*='relative'] > div > input[role='presentation']").parent() if(!selector.length) return false; selector.before("<p id='noteURI'>Note link: <a href='" + url + "'>" + url + "</a></p>"); $("#noteURI").css({ 'font-size': '1.1rem', 'margin-bottom': '.8rem' }); $("#noteURI a").css({ 'font-family': 'monospace', 'font-size': '1.3rem' }); return true; } $(document).ready(function() { if(!ENNote) return; // See: https://dev.evernote.com/doc/articles/note_links.php var userId = ENConfig.userId; var shardId = $("script:contains('userStoreUrl')").text().split('shard/')[1].split('/')[0]; var noteGuid = ENNote.guid; var url = "evernote:///view/" + userId + "/" +shardId + "/" + noteGuid + "/" + noteGuid; // insert at the beginning of the note setTimeout(function() { if(!placeURI(url)) setTimeout(arguments.callee, 400); }, 400); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址