// ==UserScript== // @name 修改知乎日报标题 // @namespace https://blog.xlab.app/ // @more https://github.com/ttttmr/UserJS // @version 0.5 // @description 修改知乎日报标题为文章标题 // @author tmr // @match *://daily.zhihu.com/story/* // @grant none // @downloadURL none // ==/UserScript== (function () { 'use strict'; function rename() { let zh_title = document.querySelector( 'p[class=DailyHeader-title]' ).innerText; document.querySelector('title').innerText = zh_title + '-知乎日报'; setTimeout(rename, 1000); } rename(); if (document.readyState == 'loading') { document.addEventListener('onload', () => setTimeout(rename, 1000)); } else { setTimeout(rename, 1000); } })();