移除知乎标题

自用,移除知乎标题!

目前為 2020-12-21 提交的版本,檢視 最新版本

// ==UserScript==
// @name        移除知乎标题
// @namespace   phant0ms.me
// @version      0.1
// @description  自用,移除知乎标题!
// @author       phant0ms
// @include      *.zhihu.com/*
// @grant        none
// @run-at document-end
// ==/UserScript==

(function() {
    'use strict';
    window.onload=function(){

       // var title = document.querySelector(".PageHeader");
        var title = document.querySelector("#root > div > div:nth-child(2) > header");
    if (title){
        title.remove();
        console.log("title removed success");
    }
    else{
        console.log("not found zhihu titile");
    }
    }
})();