// ==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 https://update.greasyfork.icu/scripts/522486/%E3%80%90%E4%BB%8A%E6%97%A5%E7%83%AD%E6%A6%9C%E3%80%91%E7%BD%91%E9%A1%B5%E6%A0%B7%E5%BC%8F%E4%BC%98%E5%8C%96.user.js // @updateURL https://update.greasyfork.icu/scripts/522486/%E3%80%90%E4%BB%8A%E6%97%A5%E7%83%AD%E6%A6%9C%E3%80%91%E7%BD%91%E9%A1%B5%E6%A0%B7%E5%BC%8F%E4%BC%98%E5%8C%96.meta.js // ==/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; } `); })();