// ==UserScript== // @name pintia夜间模式 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 开启此脚本,在使用pintia(PTA)平台的时候,会开启夜间模式 // @author 龙火火 // @match https://pintia.cn/* // @icon https://www.google.com/s2/favicons?sz=64&domain=pintia.cn // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.onload = function(event){ document.getElementsByTagName("body")[0].setAttribute('class', 'theme-dark'); }; })();