// ==UserScript== // @name 知乎首页简洁摸鱼 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 摸鱼专用 // @author You // @match https://www.zhihu.com/* // @icon https://static.zhihu.com/heifetz/favicon.ico // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... //知乎首页 //隐藏顶部标签 document.getElementsByClassName("TopstoryTabs Topstory-tabs")[0].style.display="none"; //侧边栏 document.getElementsByClassName("GlobalSideBar GlobalSideBar--old")[0].style.display="none"; //document.getElementsByTagName('a')[0].style.display="none"; func(); function func(){ //缩小标题字体 var titleList = document.getElementsByClassName('ContentItem-title'); for (var j = 0; j < titleList.length; j++) { titleList[j].style.fontSize = '16px'; titleList[j].style.fontWeight = '200'; } //缩小图片 var img=document.getElementsByTagName('img'); for (var l = 0; l