// ==UserScript== // @name 有道自动重命名 // @namespace http://note.youdao.com/ // @version 0.8 // @description 自动把打开的有道笔记分享页面重命名 // @author Ts8zs // @match https://note.youdao.com/ynoteshare1/index.html?id=* // @downloadURL none // ==/UserScript== (function() { 'use strict'; setInterval(()=>{ var text = ""; if(document.querySelector('.file-name')){ text = document.querySelector('.file-name').textContent; } if(document.querySelector('.file-name-coEdit')){ text = document.querySelector('.file-name-coEdit').textContent; } document.title=text+' - 有道云笔记'},1000) })();