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

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

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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
})();