您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自动填充switch520密码
当前为
// ==UserScript== // @name switch520-auto-secret // @namespace http://tampermonkey.net/ // @version 0.11 // @description 自动填充switch520密码 // @author Kane // @match *://*.gamers520.* // @match *://*.gamer520.* // @match *://download.gamer520.com/* // @match *://download.espartasr.com/* // @match *://download.freer.blog/* // @match *://www.freer.blog/* // @match *://*.xxxxx528.com/* // @license MIT // @icon https://www.google.com/s2/favicons?sz=64&domain=gamer520.com // ==/UserScript== (function() { 'use strict'; const el_input = function () { return document.querySelector('input#password') || document.querySelector(`input[type='password']`) || document.querySelector(`input[name='post_password']`); }(); const el_submit = function () { return document.querySelector(`input[type='submit']`) || document.querySelector(`input[name='Submit']`) || document.querySelector(`input[value='提交']`); }(); document.querySelectorAll('*').forEach((node) => { const innerText = node.innerText; if( innerText?.includes('密码') && !innerText?.includes('上一篇') && !innerText?.includes('牛夫人') && !innerText?.includes('永久防迷路') ){ const [result] = innerText.match(/[0-9]{3,6}/) ?? [null]; if(result && el_input){ console.log(result,node.innerText); el_input.value = result; el_submit.click(); } } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址