【今日热榜】去除时间线样式中的横线

去除今日热榜内容聚合页面上时间线样式中的横线

// ==UserScript==
// @name         【今日热榜】去除时间线样式中的横线
// @namespace   https://github.com/realSilasYang
// @version         2025-1-1
// @description    去除今日热榜内容聚合页面上时间线样式中的横线
// @author          阳熙来
// @match          https://tophub.today/*
// @grant           GM_addStyle
// @icon https://file.ipadown.com/tophub/assets/images/logo.png
// @license         GNU GPLv3
// ==/UserScript==


(function() {
    'use strict';

 // 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;
        }
    `);
})();