Created
April 28, 2020 17:59
-
-
Save orenyomtov/87a308af01b2f5a6acb3277e8b8ea918 to your computer and use it in GitHub Desktop.
Enable Tinder Photo Verification
This file contains hidden or 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
// 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 |
yeah, this doesn't work for me either 🤷♀️
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
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
Any update to this
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
doesn't seem to work anymore.