-
-
Save tajnymag/9de74305f9bb09aa940d26418bd508f1 to your computer and use it in GitHub Desktop.
// ==UserScript== | |
// @name Tinder Deblur | |
// @namespace Violentmonkey Scripts | |
// @match https://tinder.com/* | |
// @grant none | |
// @version 1.4 | |
// @author Tajnymag | |
// @downloadURL https://raw.githubusercontent.com/tajnymag/tinder-deblur/main/tinder.user.js | |
// @description Simple script using the official Tinder API to get clean photos of the users who liked you | |
// ==/UserScript== | |
async function unblur() { | |
const teasers = await fetch('https://api.gotinder.com/v2/fast-match/teasers', { | |
headers: { 'X-Auth-Token': localStorage.getItem('TinderWeb/APIToken') }, | |
}) | |
.then((res) => res.json()) | |
.then((res) => res.data.results); | |
const teaserEls = document.querySelectorAll('.Expand.enterAnimationContainer > div:nth-child(1)'); | |
for (let i = 0; i < teaserEls.length; ++i) { | |
const teaser = teasers[i]; | |
const teaserEl = teaserEls[i]; | |
const teaserImage = teaser.user.photos[0].url; | |
teaserEl.style.backgroundImage = `url(${teaserImage})`; | |
} | |
} | |
if (typeof GM_info === 'undefined') { | |
console.warn( | |
'[TINDER DEBLUR]: The only supported way of running this script is through a userscript management browser addons like Violentmonkey, Tampermonkey or Greasemonkey!' | |
); | |
console.warn( | |
'[TINDER DEBLUR]: Script was not terminated, but you should really look into the correct way of running it.' | |
); | |
} | |
console.warn('[TINDER DEBLUR]: This version has been deprecated. Please see https://github.com/tajnymag/tinder-deblur'); | |
setInterval(() => { | |
if (['/app/likes-you', '/app/gold-home'].includes(location.pathname)) { | |
unblur(); | |
} | |
}, 5000); |
! AUTHOR UPDATE, PLEASE READ !
I am now deprecating this gist. All future work will be done though a new repository at: https://github.com/tajnymag/tinder-deblur
To make the transition easier, I have also pushed a new version 1.4 for all current users to be migrated to the new upstream URL.
Any future feedback has to be done through the issues in the new repository. I won't respond to any comments here in this thread.
Thanks for your work...
It works again!
it works!!!!!!!!!!!!!
sigue funcionando pero altera el orden de las fotos, hay manera de ver el link de un perfil desde PC ?
still working but alters the order of the photos, is there a way to see the link of a profile from PC ?
I HAVE TINDER PLATINUM FOR A FEW MORE DAYS, IS THERE A WAY TO COLLECT INFORMATION THAT WILL SERVE THE FUTURE?
I HAVE TINDER PLATINUM FOR A FEW MORE DAYS, IS THERE A WAY TO COLLECT INFORMATION THAT WILL SERVE THE FUTURE?
Only to make screenshots. Nothing else I guess.
Works for me, thank you very much, 1 like is all I need ;)
is it just me or the new likes wont show up even when blurred (on phone), but the old likes are unblurred...
is it just me or the new likes wont show up even when blurred (on phone), but the old likes are unblurred...
yeah. Since "deblurring" script started working again, the new likes are mostly (90 %+) not shown among 10 listed photos.. Meaning when I see I have new like, I don't see this like in 10 unblurred pictures. Maybe after 5 - 10 another new likes I can see 1 new face.
Its working again but i can't see the new likes
who managed to get around the restrictions of 10 pairs?
Do you think it is possible to revert the uuid used in the url of the image to find the ID of the match ?
like this /preview.gotinder.com/˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅
https://preview.gotinder.com/30b2d849-482c-4393-ac64-416528df8fec/original_820e2e81-425d-45c9-a507-9e8420464ee7.jpeg
(don't try the link i changed it for privacy :) )
and the id is like 5cf3aeffeaa9e915008c50a6
Works like a charm, thank you.
Hello,
It doesn't work, it only shows me some people and others are missing completely.
not working now
Not working anymore.
U can fix this script? Not work in last week.
NOT WORKING :/
Really appreciate your efforts, can you update the code again, it has stopped working since last week. Thanks.
Works again !!
FOR THE PEOPLE WHO DON'T SEEM TO UNDERSTAND. THIS IS NOT REDDIT!
THE COMMENTS ARE NOT A PLACE TO CONSTANTLY SPAM "IT WORKS" OR "IT DOESN'T WORK".
IF IT WORKS FOR YOU. GOOD! DON'T NEED TO SAY ANYTHING.
IF IT DOES NOT WORK FOR YOU. TOO BAD. NO NEED TO TELL EVERYONE ELSE.
KEEP THE COMMENTS CONSTRUCTIVE, ON-TOPIC AND RELEVANT FOR EVERYONE INVOLVED.
COMMENT IF YOU CHANGED SOMETHING, OR MADE THE SCRIPT WORK OR FOUND ANOTHER WORKING SCRIPT.
OTHERWISE DON'T SPAM!
hello there, i was wondering if the script is capable to max to unlimited likes, i have 12 likes on tinder but tinder only show me 10 of 12, you guys can maxed out?
Do you think it is possible to revert the uuid used in the url of the image to find the ID of the match ? like this /preview.gotinder.com/˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅ https://preview.gotinder.com/30b2d849-482c-4393-ac64-416528df8fec/original_820e2e81-425d-45c9-a507-9e8420464ee7.jpeg (don't try the link i changed it for privacy :) ) and the id is like 5cf3aeffeaa9e915008c50a6
Willing to work on this if you elaborate more.
Is this currently still working? I downloaded the script and it is not working for me.
Is this currently still working? I downloaded the script and it is not working for me.
This was patched well over a year ago. Thanks for reminding me to unsubscribe from comments.
Is this currently still working? I downloaded the script and it is not working for me.
Nah, patched already
Thanks for the info.
Worked for me.
! AUTHOR UPDATE !
OK, the comments are getting really overwhelming. To overcome this, I'm going to create a full standalone repository for the script. There, I'll can have a proper README and we can discuss through issues.
To make the transition easier, I'm going to update the script to notify new users about the transition.