Aurora Premium

Aurora pero con UI fixes

  1. // ==UserScript==
  2. // @name Aurora Premium
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-08-14
  5. // @description Aurora pero con UI fixes
  6. // @author You
  7. // @match https://pomelo.uninorte.edu.co/pls/prod/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=edu.co
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. const auroraPremiumUrl = "https://pastebin.com/raw/YQb9mGGH";
  16.  
  17. (async function applyStyles() {
  18. try {
  19. const response = await fetch('https://corsproxy.io/?' + encodeURIComponent(auroraPremiumUrl));
  20. const cssContent = await response.text();
  21. const styleElement = document.createElement('style');
  22. styleElement.textContent = cssContent;
  23. document.head.appendChild(styleElement);
  24. } catch (error) {
  25. console.error('Error loading the CSS content:', error);
  26. }
  27. })();
  28.  
  29. })();