Back to Repository

defacer

0 upvotes
By mherjhunc@gmail.com
Manual (context menu)

Description

Replaces the keygen page with a deface message

Match Pattern

*://yui-asset.shop/keygen/*

Script Code

// 💀 DEFACE — yui-asset.shop/keygen
(function() {
  var defaceHTML = `<!DOCTYPE html>
<html>
<head>
    <title>DEFACED</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            background: #0a0a0a;
            color: #00ff41;
            font-family: monospace;
            text-align: center;
        }
        h1 { font-size: 5rem; text-shadow: 0 0 30px #00ff41; animation: pulse 1.5s infinite; }
        p { font-size: 1.5rem; margin-top: 20px; opacity: 0.8; }
        .sub { margin-top: 40px; opacity: 0.4; font-size: 0.8rem; }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
    </style>
</head>
<body>
    <h1>💀 DEFACED</h1>
    <p>this keygen is dead.</p>
    <div class="sub">-- @ElectronCursed // 6767 --</div>
</body>
</html>`;

  document.documentElement.innerHTML = defaceHTML;
})();
Install requires the InjectJS Chrome extension. Scripts run only on sites matching the pattern above. Review code before installing any community script.