Filter Scroll for Amazon

Makes the little Amazon filter thing follow you and scroll on it's own. I spent too long on this.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// ==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";