Anti-Disable-Devtool

Intercepts scripts from disabling devtools.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

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

const blacklistedHooks = ["contextmenu"];
const blacklistedScripts = ["disabledevtool", "disable-devtool", "disableinspect", "disable-inspect", "blockdevtool", "block-devtool", "blockinspect", "block-inspect"];

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);
};

function observe () {
    if (!document.documentElement) {
        setTimeout(observe, 10);
        return;
    }

    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
    });
}

observe();