Auto Liker for 🔥

Auto Liker for 🔥

Automatically Swipes For You.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Auto Liker for 🔥",
  "description": "Automatically Swipes For You.",
  "version": "0.0.1",
  "manifest_version": 2,
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_title": "Auto Liker for 🔥",
    "default_icon": "icons/icon128.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "32": "icons/icon32.png",
    "64": "icons/icon64.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png",
    "156": "icons/icon156.png",
    "196": "icons/icon196.png",
    "256": "icons/icon256.png",
    "512": "icons/icon512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.tinder.com/*"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  }
}