Greasy Fork

Greasy Fork is available in English.

有道笔记分享自动重命名

自动把打开的有道笔记分享页面标题重命名

目前为 2019-05-07 提交的版本,查看 最新版本

// ==UserScript==
// @name         有道笔记分享自动重命名
// @namespace    http://note.youdao.com/
// @version      0.8
// @description  自动把打开的有道笔记分享页面标题重命名
// @author       Ts8zs
// @match        https://note.youdao.com/ynoteshare1/index.html?id=*
// ==/UserScript==

(function() {
    'use strict';
    setInterval(()=>{document.title=document.querySelector('.file-name').textContent+' - 有道云笔记'},1000)

    // Your code here...
})();