// ==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(()=>{document.title=document.querySelector('.file-name').textContent+' - 有道云笔记'},1000) // Your code here... })();