Privacy Event Blocker

Block visibility, focus, clipboard, and key events from edupage (or any site).

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.greasyfork.org/scripts/580024/1836156/Privacy%20Event%20Blocker.js

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

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

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

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

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

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

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

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

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

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

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

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

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

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

```js
// ==UserScript==
// @name         Privacy Event Blocker
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Block visibility, focus, clipboard, and key events from edupage (or any site).
// @match        *://*/*
// @run-at       document-start
// @grant        none
// ==/UserScript==
// https://discord.gg/Up2gNZEBqG

(function() {
    'use strict';

    const blockedEvents = [
        'visibilitychange', 'webkitvisibilitychange',
        'blur', 'focus',
        'copy', 'cut', 'paste',
        'keydown', 'keyup', 'keypress',
        'contextmenu'
    ];

    // Block event listeners at the root level
    blockedEvents.forEach(ev => {
        window.addEventListener(ev, e => e.stopImmediatePropagation(), true);
        document.addEventListener(ev, e => e.stopImmediatePropagation(), true);
    });

    console.log("anti-cheat bypassed successfully | 0x | https://discord.gg/Up2gNZEBqG");


    // Override document visibility APIs
    Object.defineProperty(document, 'hidden', {
        get() { return false; }
    });

    Object.defineProperty(document, 'visibilityState', {
        get() { return 'visible'; }
    });

    // Patch addEventListener to silently ignore blocked events
    const originalAddEvent = EventTarget.prototype.addEventListener;
    EventTarget.prototype.addEventListener = function(type, listener, options) {
        if (blockedEvents.includes(type)) {
            // Prevent site from ever attaching
            return;
        }
        return originalAddEvent.call(this, type, listener, options);
    };

    // Spoof selection
    const emptySelection = { toString() { return "anti-cheat bypass by 0x | https://discord.gg/Up2gNZEBqG | dogshit security in 2026 good job edupage"; }, rangeCount: 0, getRangeAt() { return null; } };
    window.getSelection = function() { return emptySelection; };
    document.getSelection = function() { return emptySelection; };
})();
```