CSPC Leons CSS Fixer

CSS Fix

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

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

})();