Greasy Fork 支持简体中文。

借您妈一件复活甲

借给被拉黑的楼主一件复活甲,让他的亲妈短暂复活,让一楼内容临时显示。

// ==UserScript==
// @name 借您妈一件复活甲
// @description 借给被拉黑的楼主一件复活甲,让他的亲妈短暂复活,让一楼内容临时显示。
// @namespace you-are-family
// @match *://bbs.saraba1st.com/2b/thread-*
// @grant none
// @run-at document-end
// @version 1.0
// ==/UserScript==

if (document.querySelector('[id^=postnum]').textContent.trim() === '楼主') {
  document.querySelector('#postlist > [id^=post_]').style.display = 'inherit';
}