您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes dashboard post footers more like they used to be.
// ==UserScript== // @name Revert Dashboard Post Footer // @namespace https://greasyfork.org/users/65414 // @description Makes dashboard post footers more like they used to be. // @version 0.91 // @match https://www.tumblr.com/* // @grant GM_addStyle // @run-at document-start // ==/UserScript== (function() { GM_addStyle (` #tumblr [aria-label="Post Footer"] > .m5KTc { justify-content: end; } #tumblr [aria-label="Post Footer"], #tumblr [aria-label="Post Footer"] > .m5KTc > .MCavR > .sfGru { margin: 0; } #tumblr [aria-label="Post Footer"] > .m5KTc > .gstmW { flex-grow: 1; } #tumblr [aria-label="Post Footer"] > .m5KTc > .MCavR { gap: 16px; } #tumblr [aria-label="Post Footer"] > .m5KTc > .MCavR .ybmTG { display: none; } #tumblr [aria-label="Post Footer"] > .m5KTc > .MCavR.r3vIz button { margin-right: 10px; } #tumblr [aria-label="Post Footer"] > .m5KTc > .MCavR.r3vIz button > span > :not(svg) { display: none; } `); })();