Endless Tinder Liker

Endless Tinder Liker

This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Endless Tinder Liker",
  "description": "This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).",
  "version": "1.6",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://tinder.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "*://tinder.com/*"
  ]
}