// ==UserScript== // @name 【今日热榜】网页样式优化 // @namespace https://github.com/realSilasYang // @version 2025-4-19 // @description 修改标签页名;去除今日热榜内容聚合页面上时间线样式中的横线 // @author 阳熙来 // @match https://tophub.today/* // @grant GM_addStyle // @icon https://file.ipadown.com/tophub/assets/images/logo.png // @license GNU GPLv3 // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 修改网页标题 document.title = "新闻聚合"; // 去除时间线样式中的横线 Remove the original border styles by adding a new style GM_addStyle(` .kt-t .kt-t__item .kt-t__item-section .kt-t__item-section-border { position: relative !important; border-top: none !important; border-bottom: none !important; } `); })();