// ==UserScript== // @name 净化小众软件 // @namespace mutoe // @version 0.2 // @description 净化小众软件主站(www.appinn.com) 脚本请放置在页面顶部运行, 以免页面抖动 // @author mutoe // @match *://www.appinn.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var extend = false; // 是否开启极致精简模式 var baseHideDom = '.sidebar,#postfooterinfo,#bdunc,#comments,#footer,#bdun'; var baseModify = baseHideDom+'{display:none !important;}'; baseModify += '#container,.spost.post{width:100% !important;}'; var extendHideDom = '.wpfp-addlink,.os-share-box,.comments-link,.ratings,#stopbox,#topbox,#fpost'; var extendModify = extendHideDom + '{display:none !important;}'; extendModify += '#outerwrapper{margin:64px;}#wrapper{background:#fff}'; extendModify += '#outerwrapper,#outerbox,#outerheader,#header{background:#e8ddcb;}'; extendModify += '#hbox{height: 96px;margin-bottom:0;}#container{padding-top:32px;}a>img:not(.thumbnail_index){display:none;}'; // 核心代码 不懂勿动 var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = baseModify; if (extend) style.innerHTML += extendModify; document.head.appendChild(style); })();