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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Any update to this