Scroll Page Progress

Visual indicator of page progress while scrolling

اعتبارا من 06-08-2024. شاهد أحدث إصدار.

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @license MIT
// @name         Scroll Page Progress
// @namespace    http://tampermonkey.net/
// @version      2024-08-05
// @description  Visual indicator of page progress while scrolling
// @author       You
// @match        *://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function debounce(callback, wait) {
        let timerId;
        return (...args) => {
            clearTimeout(timerId);
            timerId = setTimeout(() => {
                callback(...args);
            }, wait);
        };
    }

    const observer = new MutationObserver(function (mutations) {
        const attributesMutated = mutations.filter(mutation => mutation.type === 'attributes')
        const nonStyleAttributes = attributesMutated.filter(mutation => mutation.attributeName !== 'style')
        nonStyleAttributes.forEach(attribute => percentageIndicatorContainer.removeAttribute(attribute.attributeName))
    });

    const body = document.body;
    const percentageIndicator = document.createElement('div');
    const percentageIndicatorContainer = document.createElement('div');

    Object.assign(percentageIndicatorContainer.style, {
        position: 'fixed',
        top: '10px',
        right: '10px',
        borderRadius: '50%',
        border: '3px solid white',
        color: 'white',
        fontWeight: 'bold',
        overflow: 'hidden',
        fontSize: '13px',
        backgroundImage: 'linear-gradient(to right, #434343 0%, black 100%)',
        boxShadow: `0 1px 1px hsl(0deg 0% 0% / 0.075),
        0 2px 2px hsl(0deg 0% 0% / 0.075),
        0 4px 4px hsl(0deg 0% 0% / 0.075),
        0 8px 8px hsl(0deg 0% 0% / 0.075),
        0 16px 16px hsl(0deg 0% 0% / 0.075)`,
        zIndex: 9999999999
    })

    percentageIndicatorContainer.classList.add('scroll-progress-extension')




    const percentageText = document.createTextNode('-%');
    percentageIndicator.style.width = '3em'
    percentageIndicator.style.height = '3em'
    percentageIndicator.style.display = 'flex'
    percentageIndicator.style.justifyContent = 'center'
    percentageIndicator.style.alignItems = 'center'

    function getCurrentScrollProgress() {
        const winScroll = document.body.scrollTop || document.documentElement.scrollTop;
        const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
        const progress = (winScroll / height) * 100;
        return Math.trunc(progress);
    }

    percentageIndicatorContainer.appendChild(percentageIndicator);
    percentageIndicator.appendChild(percentageText);
    body.appendChild(percentageIndicatorContainer);

    document.addEventListener('scroll', debounce(() => {
        percentageText.textContent = getCurrentScrollProgress() + '%'
    }, 100))


    observer.observe(percentageIndicatorContainer,{ attributes: true, childList: true, characterData: true })
})();