Anti-Disable-Devtool

Intercepts hooks and scripts.

Від 14.01.2024. Дивіться остання версія.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Anti-Disable-Devtool
// @description  Intercepts hooks and scripts.
// @author       Snipcola
// @namespace    https://snipcola.com
// @license      MIT
// @match        *://*/*
// @version      1.0
// @run-at       document-start
// ==/UserScript==

const blacklistedHooks = ["contextmenu"];
const blacklistedScripts = ["cdn.jsdelivr.net/npm/disable-devtool"];

const name = "Anti-Disable-Devtool";
const originalAddEventListener = document.addEventListener;

document.addEventListener = function (type, listener, options) {
    if (blacklistedHooks.includes(type)) console.error(`[${name}] Intercepted event from being hooked:`, { type, listener });
    else originalAddEventListener.call(document, type, listener, options);
};

new MutationObserver((mutations) => {
    mutations.forEach(({ addedNodes }) => {
        addedNodes.forEach((node) => {
            if (node.nodeType === 1 && node.tagName === "SCRIPT" && blacklistedScripts.map((s) => node.src?.includes(s)).includes(true)) {
                node.type = "javascript/intercepted";
                node.remove();
                console.error(`[${name}] Intercepted script from being executed:`, { node, source: node.src });
            }
        });
    });
}).observe(document.documentElement, {
    childList: true,
    subtree: true
});