Greasy Fork

Greasy Fork is available in English.

pintia夜间模式

开启此脚本,在使用pintia(PTA)平台的时候,会开启夜间模式

当前为 2023-02-21 提交的版本,查看 最新版本

// ==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
// ==/UserScript==

(function() {
    'use strict';
    window.onload = function(event){
        document.getElementsByTagName("body")[0].setAttribute('class', 'theme-dark');
    };
})();