隐藏知乎标题栏油猴脚本

https://blog.csdn.net/Superman___007/article/details/123330234

// ==UserScript==
// @name         remove the zhihu title
// @namespace    https://github.com/woodongwong/
// @version      0.1
// @description  将知乎的醒目标题移除掉!
// @author       woodong wong
// @match        https://www.zhihu.com/question/*
// @grant        none
// ==/UserScript==
 
(function() {
    var pageHeader = window.document.getElementsByClassName('PageHeader');
    if (pageHeader.length > 0) {
         pageHeader[0].getElementsByClassName('QuestionHeader-title')[0].innerHTML = '';
    }
})();
posted @ 2024-05-11 16:51  武胜造纸农  阅读(472)  评论(0)    收藏  举报