您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Style for TLSContact website to avoid scrolling the time table, makes slots easier to find.
// ==UserScript== // @name TLSContact Slot Helper // @namespace http://tampermonkey.net/ // @version 0.1 // @description Style for TLSContact website to avoid scrolling the time table, makes slots easier to find. // @author Yue Kang // @match https://*.tlscontact.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=tlscontact.com // @grant GM_addStyle // @supportURL https://github.com/kangyue92/tlscontact-slot-helper // ==/UserScript== (function() { 'use strict'; if (document.getElementsByClassName("form_status").length) { GM_addStyle('a.appt-table-btn.full {background-color: red;}'); GM_addStyle('.container {max-width: fit-content !important;}'); GM_addStyle('div.take_appointment,div.card {height: 1400px !important; width: 5000px !important;}'); } // For UK Site setTimeout(() => { if (document.getElementById("normal_button")) { document.getElementById("normal_button").click() } }, 100); setTimeout(() => { if (document.getElementById("pta_button")) { document.getElementById("pta_button").click() } }, 3000); })();