您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically enable O2 in luogu problems
- // ==UserScript==
- // @name LuoguO2Enabler
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description Automatically enable O2 in luogu problems
- // @author 2_3_3
- // @match https://www.luogu.com.cn/problem/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=luogu.com.cn
- // @grant none
- // @license MIT
- // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.0/jquery.min.js
- // ==/UserScript==
- (function() {
- 'use strict';
- function wait(calb, cond) {
- if (cond()) {
- return calb();
- } else {
- setTimeout(function() {
- wait(calb, cond);
- }, 0);
- }
- }
- wait(function() {
- let t = document.getElementsByTagName("input");
- for (let i = 0; i < t.length; i++) {
- if (t[i].id !== "") {
- $("#" + t[i].id).click();
- }
- }
- }, function() {
- if (location.href.split('#').length !== 2) {
- return false;
- }
- let t = document.getElementsByTagName("input");
- for (let i = 0; i < t.length; i++) {
- if (t[i].id !== "") {
- return true;
- }
- }
- return false;
- });
- })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址