您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Skips the pagamento de propinas warning. Made on 11/24/2024, 1:02:15 AM
// ==UserScript== // @name Skip Propinas Warning // @namespace Fenix // @description Skips the pagamento de propinas warning. Made on 11/24/2024, 1:02:15 AM // @author afsc19 // @version 1.0 // @match https://fenix.tecnico.ulisboa.pt/login.do // @grant none // @license GNU GPLv3 // ==/UserScript== (function () { 'use strict'; // Wait for the page to fully load, I think fenix doesn't need this tho. window.addEventListener('load', function () { // Prosseguir button has tabindex=1 const button = document.querySelector('a.btn.btn-default[tabindex="1"]'); // Update the selector if needed if (button) { button.click(); // Simulate the button click console.log("Skipping message."); } else { console.log("'Prosseguir' button not found."); } }); })();