// ==UserScript== // @name 简书隐藏标题 // @namespace https://www.jianshu.com // @version 0.1 // @description v0.1:简书隐藏标题 // @author shadowyy // @match https://*.jianshu.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; console.log('hide jianshu title') // home page: hide logo and title var func = function() { // hide title document.getElementsByClassName('_2zeTMs')[0].innerHTML=''; } func(); // home page: hide when scroll window.onscroll = function () { func(); } })();