Skip to content

Instantly share code, notes, and snippets.

@orenyomtov
Created April 28, 2020 17:59
Show Gist options
  • Save orenyomtov/87a308af01b2f5a6acb3277e8b8ea918 to your computer and use it in GitHub Desktop.
Save orenyomtov/87a308af01b2f5a6acb3277e8b8ea918 to your computer and use it in GitHub Desktop.
Enable Tinder Photo Verification
// Hook hasOwnProperty to enable the Photo Verification feature
Object.prototype.hasOwnProperty = function(prop) {
if (prop == "selfieVerification") this.selfieVerification = 1;
return Reflect.has(this, prop);
};
// Open the profile page
document.querySelector('a[href="/app/profile"]').click();
// Now all that is left is to click the grey check mark next to your name
@Rhenm091619
Copy link

Any update to this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment