您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Este script me sirve para arreglar las notificaciones que no aparecen los iconos
// ==UserScript== // @name Cursos UDV - Arreglar Notificaciones // @description Este script me sirve para arreglar las notificaciones que no aparecen los iconos // @version 1.0.0 // @author Fernando Barrios (https://github.com/jfernandogt) // @match https://www.cursos.udv.edu.gt/* // @match https://cursos.udv.edu.gt/* // @run-at document-start // @license MIT; https://opensource.org/licenses/MIT // @namespace https://udv.edu.gt // @icon https://cursos.udv.edu.gt/pluginfile.php/1/theme_snap/favicon/1731474836/favicon%2520%25288%2529.ico // @grant GM_addStyle // ==/UserScript== /* Author: Put your name here. Github: Put your GitHub repository URL or GitHub user page here. Discord: Put your discord server support URL or your discord username here. Greasyfork: Put your Greasyfork profile page URL here. Ko-fi: Put your ko-fi donation URL here. Website: Put your website URL here. (One you own or made.) */ (function() { 'use strict'; GM_addStyle("#mr-nav .icon.fa-comment {color: white !important;}"); GM_addStyle("#nav-notification-popover-container .fa-bell {color: white !important;}"); GM_addStyle(".notification-message, .popover-region-seeall-text, header#mr-nav a.view-more {color: black !important;}"); })();