Tinder swipe bot

Tinder swipe bot

Bot that swipes every tinder profile to the right so that you just have to deal with matches and not with swiping anymore.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Tinder swipe bot",
  "version": "1.2",
  "description": "Description here.",
  "icons": {
    "48": "fire-icon-32.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://tinder.com/app/recs/?runbot=true&*"
      ],
      "js": [
        "bot.js"
      ]
    }
  ],
  "browser_action": {
    "browser_style": true,
    "default_popup": "start_bot.html",
    "default_icon": {
      "16": "fire-icon-16.png",
      "32": "fire-icon-32.png"
    }
  }
}