您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes the little Amazon filter thing follow you and scroll on it's own. I spent too long on this.
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // ==UserScript== // @name Filter Scroll for Amazon // @namespace https://cbass92.org/ // @version 1.2 // @description Makes the little Amazon filter thing follow you and scroll on it's own. I spent too long on this. // @author Cbass92 // @match https://www.amazon.com/s* // @grant none // @license MIT // ==/UserScript== let element = document.getElementsByClassName('sg-col-inner'); element[element.length - 1].style.position = "fixed"; element[element.length - 1].style.overflowY = "auto"; element[element.length - 1].style.width = "inherit"; element[element.length - 1].style.height = "60vh"; element[element.length - 1].style.borderRadius = "15px"; element[element.length - 1].style.backgroundColor = "#c8c9cc"; element[element.length - 1].style.padding = "10px";