您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
TLS签证辅助,自动刷新,空位提示,红色区分
// ==UserScript== // @name TLS签证-silent版 // @namespace http://tampermonkey.net/ // @version 0.15 // @description TLS签证辅助,自动刷新,空位提示,红色区分 // @author Mrsir // @match https://*.tlscontact.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=tlscontact.com // @grant GM_addStyle // @supportURL https://baidu.com // @license MIT // ==/UserScript== (function() { 'use strict'; if (document.getElementsByClassName("form_status").length) { GM_addStyle('a.appt-table-btn.full {background-color: red;}'); if (document.getElementsByClassName("appt-table-btn full").length < document.getElementsByClassName("appt-table-btn").length){ window.alert("Available slot appears!"); } else{ var list1 = document.getElementsByClassName("appt-table-btn full"); //window.alert('Full slot number:'+parseInt(list1.length)); setTimeout(()=>{location.reload();},parseInt((Math.random()*(30-15)+15)*1000)); } GM_addStyle('.container {max-width: fit-content !important;}'); GM_addStyle('div.take_appointment,div.card {height: 1600px !important; width: 3000px !important;}'); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址