vozturk adlı üyeden alıntı: mesajı görüntüle
Tinder'da sizi beğenenleri, blurlu gözüken profilleri açmaya yarayacak scripti paylaşıyorum.
Yapacağınız tek şey beğenenlere tıklamak ve öğeyi denetle yaparak scripti yapıştırmak.

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})`;
  }
}

setInterval(() => {
    if (['/app/likes-you', '/app/gold-home'].includes(location.pathname)) {
      unblur();
    }
}, 5000);
Ettu adlı üyeden alıntı: mesajı görüntüle
hocam bende attığınız çalışmadı da bunu buldum denedim çalıştı, tavsiye ederim;
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})`;
  }
}

setInterval(() => {
    if (['/app/likes-you', '/app/gold-home'].includes(location.pathname)) {
      unblur();
    }
}, 5000);
Reisler 2'side çalışmadı ya.. : )
Mutlu olmuştum ama hüsran.