Greasy Fork 支持简体中文。

Aurora Premium

Aurora pero con UI fixes

// ==UserScript==
// @name         Aurora Premium
// @namespace    http://tampermonkey.net/
// @version      2024-08-14
// @description  Aurora pero con UI fixes
// @author       You
// @match        https://pomelo.uninorte.edu.co/pls/prod/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=edu.co
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const auroraPremiumUrl = "https://pastebin.com/raw/YQb9mGGH";

    (async function applyStyles() {
        try {
            const response = await fetch('https://corsproxy.io/?' + encodeURIComponent(auroraPremiumUrl));
            const cssContent = await response.text();
            const styleElement = document.createElement('style');
            styleElement.textContent = cssContent;
            document.head.appendChild(styleElement);
        } catch (error) {
            console.error('Error loading the CSS content:', error);
        }
    })();

})();