自用,移除知乎标题!
当前为
// ==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");
}
}
})();