vistopia mod

“看理想”界面自定义

目前為 2023-06-07 提交的版本,檢視 最新版本

// ==UserScript==
// @name         vistopia mod
// @license      MIT
// @namespace    http://tampermonkey.net/
// @version      0.11
// @description  “看理想”界面自定义
// @author       Sherlock-V
// @match        https://www.vistopia.com.cn/*
// @match        https://www.vistopia.com.cn
// @icon         https://www.google.com/s2/favicons?sz=64&domain=vistopia.com.cn
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    styleText = "h1{color:#111}";
    GM_addStyle(styleText);

})();