Webpage Scroll Progress Bar

Add an animated smooth webpage scroll progress bar and remove footers

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Webpage Scroll Progress Bar
// @license      MIT
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  Add an animated smooth webpage scroll progress bar and remove footers
// @match        *://*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Create the progress bar element and style it
    const progressBar = document.createElement("div");
    progressBar.style.position = "fixed";
    progressBar.style.bottom = "0";
    progressBar.style.left = "0";
    progressBar.style.width = "0";
    progressBar.style.zIndex = "9999";
    progressBar.style.height = "3px";
    progressBar.style.backgroundColor = "red";
    progressBar.style.transition = "width 0.1s ease-out";
    progressBar.style.borderRadius = "10px"; // Rounded corners

    document.body.appendChild(progressBar);

    // Update progress bar on scroll
    window.addEventListener("scroll", () => {
        const scrollableHeight = document.documentElement.scrollHeight - window.innerHeight;
        const scrollProgress = (window.scrollY / scrollableHeight) * 100;
        progressBar.style.width = scrollProgress + "%";

        // Change color based on scroll progress
        const color = `rgb(${250 - scrollProgress * 2.55}, 0, ${scrollProgress * 9.55})`;
        progressBar.style.backgroundColor = color;
    });

    // Function to remove footers
    function removeFooters() {
        const footers = document.querySelectorAll('footer'); // Adjust selector as needed
        footers.forEach(footer => {
            footer.remove(); // Remove the footer element
        });
    }

    // Call removeFooters function when the document is ready
    document.addEventListener('DOMContentLoaded', removeFooters);
})();