您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically open the filter drawer when visiting the Latest Update page for the first time.
当前为
// ==UserScript== // @name F95 Auto Open Filter Drawer // @namespace 1330126-edexal // @match *://f95zone.to/sam/latest_alpha/* // @grant none // @icon https://external-content.duckduckgo.com/ip3/f95zone.to.ico // @license Unlicense // @version 1.0 // @author Edexal // @description Automatically open the filter drawer when visiting the Latest Update page for the first time. // ==/UserScript== (() =>{ function getRandomInt(min, max) { const minCeiled = Math.ceil(min); const maxFloored = Math.floor(max); return Math.floor(Math.random() * (maxFloored - minCeiled)) + minCeiled; } function openDrawer(){ let randint = getRandomInt(900,1500); setTimeout(() => { let drawerButton = document.querySelector('#controls_filter-toggle'); drawerButton.click(); }, randint); } openDrawer(); })();