// ==UserScript== // @name IT之家首页清洁 // @namespace http://ugmark.com/ // @version 0.3 // @description 简化IT之家首页内容,只保留最新的文章列表 // @author aSmecta // @license MIT // @match *://*.ithome.com/* // @match *://*.cnbeta.com/* // @icon https://ugmark.com/img/icons/favicon-32x32.png // @supportURL http://ugmark.com/ // @grant GM_addStyle // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Custom Style let css=` #news{ padding-top:0; } #nnews,#dt .content{ width: 100%; } #nav, #nav .fr{ height:auto } ul.nl{ width:46%; padding-top:0; margin-top:0; } ul.nl li a{ width:calc(100% - 60px); } #nnews .t-f{ margin-bottom:20px; } #tt, .ra, #nav .fl, #news .fl,.hotkeyword, div.bl.bb, #fls.bb, #cp.bb,#side_func a, .fr .t-h, footer,div.mt.so,#top #music,#dt .fr, .newsgrade, .shareto, .related_post, .dajia{ display:none !important; } .article-share-code, .page-last, .page-next{ display:none; } .fr{ float:initial; } .cnbeta-update-list, .cnbeta-article{ width:auto; } .t-b{ margin-bottom: 10px; } .t-b::after{ content:" "; background-color:#d22222; width:25%; height:2px; margin:0 auto; opacity:.5; } ` GM_addStyle(css) let itList = document.querySelectorAll('.t-b.clearfix'); //console.log(typeof(itList)) Array.from(itList).map((item)=>{ item.classList.add('sel') document.querySelector('#n-p').style.display='none'; }); })();