您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Dude, I'm like, not waiting for this to type out. Let. Me. In.
// ==UserScript== // @name SkipAuthv1 // @namespace yumyumyum scripts // @match https://auth.segfault.club/ // @grant none // @version 1.0 // @author yumyumyum // @description Dude, I'm like, not waiting for this to type out. Let. Me. In. // @license MIT // ==/UserScript== (function() { 'use strict'; function skipTyping() { document.getElementById("rules").innerText = document.getElementById("rules").innerText; document.getElementById("final").innerText = ""; document.getElementById("link").className = ""; const rules = document.getElementById("rules"); const cmd = document.getElementById("authCmd"); rules.parentNode.removeChild(rules); cmd.parentNode.removeChild(cmd); } skipTyping(); })();