第一会所阅读模式

try to take over the world!

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==

// @name         第一会所阅读模式

// @namespace    http://tampermonkey.net/

// @version      0.5

// @description  try to take over the world!

// @author       You

// @match        http://38.103.161.226/forum/*

// @grant        none

// ==/UserScript==



(function() {

    'use strict';

var className = document.getElementsByClassName("t_msgfont");

var str = className[0].innerHTML;

str=str.replace(/ /ig,'');//去掉
str=str.replace("<table>(.*?)</table>",'');//去掉


document.write('<body style="background-color:#9fb157;line-height:200%;"><div style="margin: 5% auto 5% auto;width: 50%;background-color:#333333;color:#009688;box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.2);">'+'<div style="padding:5%;font-size:12px;">'+str+'</div>'+'</div></body>');

var obj = document.getElementsByTagName("table");
obj.parentNode.removeChild(obj);

})();