Greasy Fork 支持简体中文。

今日热榜 紧凑排版

今日热榜 紧凑排版!

// ==UserScript==
// @name         今日热榜 紧凑排版
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  今日热榜 紧凑排版!
// @author       Leon
// @match        *://tophub.today/c/*
// @match        *://tophub.today/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tophub.today
// @grant        none
// @license      AGPL
// ==/UserScript==

(function() {
	
    $(".cq").remove();

    $(".I-J").css({"left":"5%", "right":"0%", "width":"400px"});

    $(".I-J").after($(".kb-lb-ib-hb"));

    $(".kb-lb-ib-hb").css({"position":"absolute","left":"25%"});

    $("#tabbar").remove();

    $(".c-d").css({"padding-top":"10px"});

    $(".alert").hide()

})();