Tinder Deblur

Simple script using the official Tinder API to get clean photos of the users who liked you

  1. // ==UserScript==
  2. // @name Tinder Deblur
  3. // @description Simple script using the official Tinder API to get clean photos of the users who liked you
  4. // @author spatch
  5. // @version 1.0
  6. // @license MIT
  7. // @namespace https://gf.qytechs.cn/en/scripts/517571-tinder-deblur/code
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=tinder.com
  9. // @match https://tinder.com/*
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. // This async function fetches the first 10 teaser profiles from the Tinder API and unblurs them by
  14. // setting the appropriate images as the background of the corresponding teaser elements on the page.
  15. async function unblur() {
  16. const teasers = await fetch(
  17. "https://api.gotinder.com/v2/fast-match/teasers",
  18. {
  19. headers: {
  20. "X-Auth-Token": localStorage.getItem("TinderWeb/APIToken"), // Use the stored Tinder API token for authentication
  21. platform: "android",
  22. },
  23. }
  24. )
  25. .then((res) => res.json()) // Parse the API response as JSON
  26. .then((res) => res.data.results); // Extract the teaser profiles from the response
  27.  
  28. // Select all teaser elements in the page where the unblurred images will be applied
  29. const teaserElements = document.querySelectorAll(
  30. ".Expand.enterAnimationContainer > div:nth-child(1)"
  31. );
  32.  
  33. // Iterate over each teaser and apply the unblurred image as the background of the corresponding element
  34. teasers.forEach((teaser, index) => {
  35. const teaserElement = teaserElements[index];
  36. if (teaserElement) {
  37. // Set the teaser image as the background
  38. const teaserImage = `https://preview.gotinder.com/${teaser.user._id}/original_${teaser.user.photos[0].id}.jpeg`;
  39. teaserElement.style.backgroundImage = `url(${teaserImage})`;
  40. }
  41. });
  42. }
  43.  
  44. // This function repeatedly checks if the teaser elements are present on the page.
  45. // If they are, it calls the unblur function to unblur them. If not, it continues to recheck every 2 seconds.
  46. function checkAndRunUnblur() {
  47. const teaserElements = document.querySelectorAll(
  48. ".Expand.enterAnimationContainer > div:nth-child(1)"
  49. );
  50.  
  51. if (teaserElements.length > 0) {
  52. unblur(); // If teasers are found, start the unblur process
  53. setTimeout(checkAndRunUnblur, 2000); // Recheck after 2 seconds
  54. } else {
  55. console.log("Teasers not found, retrying in 2 seconds...");
  56. setTimeout(checkAndRunUnblur, 2000); // Recheck after 2 seconds
  57. }
  58. }
  59.  
  60. // Start the unblur process after the page fully loads
  61. window.addEventListener("load", checkAndRunUnblur);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址