您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
4/23/2025, 6:46:34 PM
// ==UserScript== // @name metruyencv unhide Content // @namespace Violentmonkey Scripts // @match https://metruyencv.*/* // @grant none // @version 1.0 // @author - // @run-at document-idle // @description 4/23/2025, 6:46:34 PM // @license MIT2 // ==/UserScript== // const sleep=ms=>new Promise(rs=>setTimeout(rs,ms)) // console.log=console.debug; // async function waitForElement(cssSelector, wT=2000,interval=100) { // for (let i=0; i<=wT; i=i+interval) { // let el = document.querySelector(cssSelector); // if (el) return el; // else await sleep(interval); } // return false; // } (async function (){ document.querySelectorAll('div[data-x-show="$store.account.isLoggedIn || isGoogleBot()"][style="display: none;"]').forEach(el=>{ el.setAttribute('style',"display: block;"); }) })()
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址