// ==UserScript== // @name 调整归属地样式间距 5px // @namespace https://userstyles.world/user/mscststs // @version 20240418.05.53 // @description 调整评论区ip和时间的间距 // @author mscststs // @license MIT // @grant GM_addStyle // @run-at document-start // @match *://*.www.bilibili.com/* // @match *://*.t.bilibili.com/* // @downloadURL none // ==/UserScript== (function() { let css = ` .comment .reply-time { margin-right: 5px !important; } `; if (typeof GM_addStyle !== "undefined") { GM_addStyle(css); } else { const styleNode = document.createElement("style"); styleNode.appendChild(document.createTextNode(css)); (document.querySelector("head") || document.documentElement).appendChild(styleNode); } })();