I have looked at every answer on this page as well as links and nothing seems to work I have a variable score
which I can still change using the console so I need to fix that
How does Facebook disable the browser's integrated Developer Tools?
Does anybody know a clear cut way to disable user using the console?
FYI this seems to be a popular answer i put this in as is and still nothing
(function() {
try {
var $_console$$ = console;
Object.defineProperty(window, "console", {
get: function() {
if ($_console$$._commandLineAPI)
throw "Sorry, for security reasons, the script console is deactivated on netflix.com";
return $_console$$
},
set: function($val$$) {
$_console$$ = $val$$
}
})
} catch ($ignore$$) {
}
})();