您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
CSS Fix
// ==UserScript== // @name CSPC Leons CSS Fixer // @namespace http://tampermonkey.net/ // @version 1.3-yU1jx // @description CSS Fix // @author Mra1k3r0 // @match *://leons.cspc.edu.ph/* // @icon https://www.google.com/s2/favicons?sz=64&domain=edu.ph // @grant none // @license MIT // ==/UserScript== (function () { 'use strict'; fetch('https://gist.githubusercontent.com/Mra1k3r0/d478ecdb2296cb5c630d42358bbe330e/raw/cecbfd5a3bbe4423d1ceed4376a498e7faaeeb5c/testcspc.css') .then(response => response.text()) .then(css => { var style = document.createElement('style'); style.textContent = css; document.head.appendChild(style); }) .catch(error => console.error('Error loading CSS:', error)); })();