Created
September 14, 2023 19:48
-
-
Save hussainweb/d33650b64b4cdac7dc55d8df4a9ad802 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Suspend Disable-Devtool (simple approach) | |
// @namespace https://www.tampermonkey.net/ | |
// @version 0.1 | |
// @description suspend https://github.com/theajack/disable-devtool | |
// @author hussainweb | |
// @match {site} | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=gist.github.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
self.DisableDevtool.isSuspend = true; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment