Greasy Fork is available in English.

⚠️⛔️WEBSITE BREAKER⚠️⛔️ (CHEAT, HACK, EXPLOIT, ⚠️⛔️DANGEROUS)⚠️⛔️

⚠️⛔️THIS BREAKS EVERY WEBSITE YOU VISIT⚠️⛔️

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         ⚠️⛔️WEBSITE BREAKER⚠️⛔️ (CHEAT, HACK, EXPLOIT, ⚠️⛔️DANGEROUS)⚠️⛔️
// @namespace    https://tampermonkey.net/
// @version      1.0
// @description  ⚠️⛔️THIS BREAKS EVERY WEBSITE YOU VISIT⚠️⛔️
// @author       Phil 🥹👍
// @match        *://*/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    setInterval(function() {
        // Targets all common text elements
        var elements = document.querySelectorAll('div, span, a, p, h1, h2, li');
        
        // Picks a random element based on the website's actual size
        var el = elements[Math.floor(Math.random() * elements.length)];
        
        // Only scrambles if the element has text and no nested sub-boxes (keeps layout clean)
        if(el && el.innerText && el.children.length === 0) {
            el.innerText = el.innerText.split('').map(() => String.fromCharCode(Math.floor(Math.random() * 50) + 33)).join('');
        }
    }, 1); // Fires every millisecond
})();