Enhanced Faster Webpage Loading (Optimized)

Optimize webpage loading with native prefetching, priority hints, and lazy loading.

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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 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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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         Enhanced Faster Webpage Loading (Optimized)
// @namespace    http://tampermonkey.net/
// @version      3.0
// @description  Optimize webpage loading with native prefetching, priority hints, and lazy loading.
// @match        *://*/*
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function () {
    'use strict';

    const EXCLUDED_LINKS = ['/login', '/logout', '/signout', '/signin', '/account', '/auth'];

    // Lazy Load Images, Videos, and Iframes
    function setupLazyLoading(root = document) {
        const lazyElements = root.querySelectorAll("img[data-src], video[data-src], iframe[data-src]");

        function loadLazyElement(el) {
            if (el.dataset.src) {
                el.src = el.dataset.src;
                if (el.tagName.toUpperCase() === "VIDEO") el.load();
                el.removeAttribute("data-src");
            }
        }

        if ("IntersectionObserver" in window) {
            const observer = new IntersectionObserver((entries, observerInstance) => {
                entries.forEach(entry => {
                    if (entry.isIntersecting) {
                        loadLazyElement(entry.target);
                        observerInstance.unobserve(entry.target);
                    }
                });
            });
            lazyElements.forEach(el => observer.observe(el));
        } else {
            lazyElements.forEach(loadLazyElement);
        }
    }

    // Prefetch and Prioritize Links
    function enhancePrefetching() {
        document.querySelectorAll("a[href]").forEach(link => {
            const href = link.href;
            if (!EXCLUDED_LINKS.some(excluded => href.includes(excluded)) && !link.hasAttribute("data-no-prefetch")) {
                const prefetch = document.createElement("link");
                prefetch.rel = "prefetch";
                prefetch.href = href;
                prefetch.as = "document";
                document.head.appendChild(prefetch);

                // Use Priority Hints (if supported)
                link.setAttribute("importance", "high");
            }
        });
    }

    // Watch for dynamically added content
    function observeDynamicContent() {
        const observer = new MutationObserver(mutations => {
            mutations.forEach(mutation => {
                mutation.addedNodes.forEach(node => {
                    if (node.nodeType === 1) {
                        setupLazyLoading(node);
                        enhancePrefetching();
                    }
                });
            });
        });
        observer.observe(document.body, { childList: true, subtree: true });
    }

    // Initialize Enhancements
    function init() {
        setupLazyLoading();
        enhancePrefetching();
        observeDynamicContent();
    }

    if (document.readyState === "loading") {
        document.addEventListener("DOMContentLoaded", init);
    } else {
        init();
    }
})();