// ==UserScript== // @name Tieba百度贴吧楼中楼(回复楼)的楼主标识 // @namespace http://nickdoth.cc/ // @version 0.2.0 // @description 在贴吧楼中楼回复者中标识出楼主,效果类似手机版 // @compatible chrome // @compatible firefox // @compatible safari // @license MIT // @author nickdoth // @match http://tieba.baidu.com/p/* // @match https://tieba.baidu.com/p/* // @grant unsafeWindow // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Sheet var styleEl = unsafeWindow.document.createElement('style'); unsafeWindow.document.head.appendChild(styleEl); var sheet = styleEl.sheet; sheet.insertRule(`a.at[username="${unsafeWindow.PageData.thread.author}"]:after { content: "楼主"; background: #17a; color: #fff; border: 1px transparent solid; border-radius: 5px; padding: 2px 4px; margin-left: 1px; margin-right: 1px; font-size: 12px; }`, 0); })();