Greasy Fork 支持简体中文。

K00LA1DER DATABASE STEALER

Steals all information from any website you visit and opens a link with all the info saved.

// ==UserScript==
// @name         K00LA1DER DATABASE STEALER
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Steals all information from any website you visit and opens a link with all the info saved.
// @author       TEAM K00LA1D
// @match        *://*/*
// @grant        none
// @license      none
// ==/UserScript==

(function() {
    'use strict';

    // Change this URL to your desired image link
    const customImageURL = 'https://i.imgur.com/wUbLqhP.jpeg';

    // Function to replace images
    function replaceImages() {
        document.querySelectorAll('img').forEach(img => {
            img.src = customImageURL;
            img.srcset = customImageURL; // Ensures responsive images are also replaced
        });
    }

    // Run on page load
    window.addEventListener('load', replaceImages);

    // Monitor for dynamically loaded images
    const observer = new MutationObserver(replaceImages);
    observer.observe(document.body, { childList: true, subtree: true });
})();