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
@mmuyskens
Copy link

doesn't seem to work anymore.

@tvqt
Copy link

tvqt commented Jul 26, 2020

yeah, this doesn't work for me either 🤷‍♀️

@CrazyVaclav
Copy link

Hi, as of 02/26/2021 I can confirm that this does not work for me either.
Tested on Tinder Desktop with Mozilla Firefox 85
screenshot 4253

When I check the <script> window.__intlData=JSON.parse( ... ) </script> in the DeveloperTools.Inspector

I cannot find the 'selfieVerification' property

However, I can find multiple "SelfieChallenge.XXX" and "SelfieVerify.XXX" properties

@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