- Filter by name
- Filter by age
- Open filterSearch.js
- Copy code
- Head over to Tinder | Swipe. Match. Chat.
- Log in and right click anywhere on the white background and select Inspect Element in the pop-up window.
- Click the console tab and paste in code.
- Decide what kind of filtering you want. Change true/false-statement of filterByName/filterByName to what you wish to filter by.
- Change the placeholder values for desiredName and desiredAge. Variables will only be taken into account if filters are activated (See last step)
- Hit enter and watch the magic unfold!
As of latest version, the script will halt when it finds a matching result based on the filters. To continue searching, hit like or dislike on the matching profile, and the script will continue.
var filterByName = true; //found on line 12 var filterByAge = true; //found on line 13
var desiredName = "Barack"; //found on line 15 var desiredAge = "56"; //found on line 16