有道自动重命名

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

  1. // ==UserScript==
  2. // @name 有道自动重命名
  3. // @namespace http://note.youdao.com/
  4. // @version 0.8
  5. // @description 自动把打开的有道笔记分享页面重命名
  6. // @author Ts8zs
  7. // @match https://note.youdao.com/ynoteshare1/index.html?id=*
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. 'use strict';
  12. setInterval(()=>{
  13. var text = "";
  14. if(document.querySelector('.file-name')){
  15. text = document.querySelector('.file-name').textContent;
  16. }
  17. if(document.querySelector('.file-name-coEdit')){
  18. text = document.querySelector('.file-name-coEdit').textContent;
  19. }
  20. document.title=text+' - 有道云笔记'},1000)
  21. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址