theajack / disable-devtool

Disable web developer tools from the f12 button, right-click and browser menu
https://theajack.github.io/disable-devtool/
MIT License
1.92k stars 184 forks source link

期待加一个DisableShortcut的选项 #97

Open qwIvan opened 4 months ago

qwIvan commented 4 months ago

我希望在检测到开发者工具被打开后,自己设下圈套做些处理,例如给一些假接口假数据之类的。我不想直接禁止人打开控制台,这样别人就会想方设法绕过。我不想让人知道我有做防御措施,以免打草惊蛇。

theajack commented 4 months ago

现在可以的啊

DisableDevtool({
    ondevtoolopen(type, next){
        alert('Devtool opened with type:' + type);
        next(); // 这个next如果不调用就没有默认行为
    }
});