try to take over the world!
// ==UserScript==
// @name 暗黑模式
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.ptwxz.com/html/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementById("main").setAttribute("class","")
document.body.style.backgroundColor="#000";
document.body.style.color="#a9a9a9";
})();