Git Product home page Git Product logo

tinder's Introduction

Tinder

Auto swipe-right (tinder-web)

Follow the steps given below:

  1. Copy-paste the script from tinder.js to developer console of your browser.
  2. Press the ENTER key.
  3. Sit back and relax as you see profiles are automatically SWIPPED RIGHT. ( ๐Ÿ˜Ž )

You're welcome ๐Ÿ˜‰

Or to make things more convinient

Add this as bookmark url:

javascript:(function(){let run = true, time_step = 1000; const wait = (n = 1) => new Promise((rs, rj) => run ? setTimeout(rs, n) : rj()), click = async (cn, i = 0) => { document.getElementsByClassName(cn)[i].click(); return wait(time_step) }; document.onkeydown = (e = window.event) => { if (e.key === "a") run = run ? true : explore() || true; else if (e.key === "z") console.log(time_step *= 0.9); else if (e.key === "x") console.log(time_step *= 1.1); else run = false; }; const explore = async () => click("recCard__info").then(() => Array.from(document.getElementsByClassName("bullet")).reduce((p, e) => p.then(() => { e.click(); return wait(time_step) }), Promise.resolve()) ).then(() => click("recsGamepad__button--like") ).then(() => explore()); explore();})();

Add it to bookmark bar and click it while on tinder.

Control

a - start
z - speed up by 10%
x - slow down by 10%

Avoiding reload

if you copy the code just close inspector instead of clicking on website.

tinder's People

Contributors

dhrubesh avatar laurentbroering avatar skitionek avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

tinder's Issues

How about puppeteer?

With a headless navigator we would run anywhere we want, creating the opportunity to put it to run as a service.

Change delay to 2000

Seems like tinder blocks a user for 12 hours who swipes more than 2000 times in a hour (I have not verified this information). So, may be you want to change the delay to 2000 from current 1000 to be in the safe side. Delay of 2 seconds will at max swipe 1800 times in an hour.

code changed

see this new in inspect
svg-fill-linear__like
how ever cannot get it to work by substitude this

Code patched

The code has been patched yet again. This time, they decided to get rid of easy indicators of the like button. Below is working code (for now):

var buttons = document.getElementsByTagName('button');
var button = () => {
var butt = null;
var seen = 0;
for (const button of buttons) {
const props = button['__reactProps$zagytlsl8m'];
if (props != undefined && props.className != undefined && props.className.includes('like')) {
if (seen != 0){
butt = button;
break;
}
seen += 1;
}
}
return butt;
}
setInterval(function(){ button().click(); }, 1000)

Note that the props variable needs to change after every page refresh. This is because the code after reactProps$ changes with every page reload. Therefore, run the following code first:

console.log(document.getElementsByTagName('button'));

This will print an array of buttons. Click on any button in this array and copy the code after reactProps$ into the props variable. Then you can run the code above.

For those interested, the reason we are using a "seen" variable is because the super like always comes before the like in the buttons array. So we simply use the seen variable to skip the super like.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.