您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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';
- document.body.onload = async () => {
- const auroraPremiumUrl = "https://pastebin.com/raw/YQb9mGGH";
- 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);
- }
- };
- })();