Wpis z mikrobloga

#tinder

Mirki, jest jakiś sprytny sposób na podejrzenie kto Cię polajkował? Swego czasu były jakieś chytre apki do przeglądarki bodajże a od czasu jak znacznie bardziej zamazali zdjęcia lików nie da się w jednoznaczny sposób dopasować kto polajkował. Oczywiście mówię o darmowych sposobach.
  • 11
@Wiskoler_double:

1. Odpalasz tindera w przegladarce
2. Wchodzisz na strone ze zblurowanymi parami
3. Odpalasz devtools (F12) i przchodzisz do konsoli
4. W konsoli wklejasz:

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
@Nattana: @Wiskoler_double:
1. wbijacie na tindera
2. na pasek zakładek dodajecie sobie ten link:
javascript:fetch("https%3A%2F%2Fapi.gotinder.com%2Fv2%2Ffast-match%2Fteasers"%2C%7Bheaders%3A%7B"x-auth-token"%3AlocalStorage.getItem("TinderWeb%2FAPIToken")%7D%7D).then(function(a)%7Breturn a.json()%7D).then(function(a)%7Breturn a.data.results.map(function(b)%7Breturn b.user.photos.map(function(c)%7Breturn window.open(c.url)%7D)%7D)%7D)%3Bvoid+0
3. klikacie na zakładkę i na nowych kartach otwierają się wam fotki

@Wiskoler_double: działa ten kod:

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 (location.pathname === '/app/likes-you') {
unblur();
}
}, 5000);

(skopiuj