// ==UserScript== // @name S1长图缩小 // @namespace Violentmonkey Scripts // @match https://bbs.saraba1st.com/2b/* // @grant none // @version 1.0 // @author - // @run-at document-idle // @description 2020/2/22 下午4:38:25 // @downloadURL none // ==/UserScript== function scale(){ Array.from(document.querySelectorAll('.pct')).map(el => { Array.from(el.querySelectorAll('img')).map(pic => { if(pic.height > 300 || pic.width > 300){ let scale = pic.width/pic.height pic.height = 300 pic.width = pic.height*scale } }) }) } scale() window.addEventListener('scroll',scale)