Skip to content

Instantly share code, notes, and snippets.

@vanholler
Created August 5, 2024 08:39
Show Gist options
  • Save vanholler/0393f014417624793d946d5b7da30778 to your computer and use it in GitHub Desktop.
Save vanholler/0393f014417624793d946d5b7da30778 to your computer and use it in GitHub Desktop.
code иньекция
resource override - plugin
if(location.hostname === 'site.io'){
const original_indexOf = Array.prototype.includes
Array.prototype.includes = function (...args) {
console.log("includes", this)
return original_indexOf.apply(this, args)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment