您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to make the page automatically scroll to where the comic is
// ==UserScript== // @name Lackadaisy - Friction Reduction // @namespace https://linktr.ee/towai // @version 0.1 // @author twi // @license https://cohost.org/lifning/post/1023282-bbhl-license-v1 // @description try to make the page automatically scroll to where the comic is // @match https://www.lackadaisycats.com/comic.php* // @icon https://www.google.com/s2/favicons?sz=64&domain=lackadaisycats.com // @run-at document-idle // ==/UserScript== (function() { console.log("userscript loaded successfully"); setTimeout(() => { window.scrollTo(0 , 236); }, 100); })();