暗黑模式

try to take over the world!

目前為 2021-01-29 提交的版本,檢視 最新版本

// ==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";
})();