Auto Swiper for Tinder, Bumble and more!

Auto Swiper for Tinder, Bumble and more!

Auto Swiper Extension to Swipe Tinder, Bumble, Lovoo, PoF and OkCupid Profiles.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_APP_NAME__",
  "description": "__MSG_APP_DESCRIPTION__",
  "version": "3.19.0",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "128": "icons/icon_128.png"
  },
  "action": {
    "default_title": "__MSG_APP_NAME__",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://tinder.com/*",
        "*://*.tinder.com/*",
        "*://bumble.com/app/*",
        "*://*.bumble.com/app/*",
        "*://lovoo.com/*",
        "*://*.lovoo.com/*",
        "*://okcupid.com/*",
        "*://*.okcupid.com/*",
        "*://badoo.com/*",
        "*://*.badoo.com/*",
        "*://pof.com/*",
        "*://*.pof.com/*",
        "*://zoosk.com/*",
        "*://*.zoosk.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "notifications",
    "scripting",
    "alarms",
    "debugger",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "https://auto-swiper.ch/*",
    "https://*.auto-swiper.ch/*",
    "https://payment.auto-swiper.ch/*",
    "https://tinder.com/*",
    "https://*.tinder.com/*",
    "https://bumble.com/app/*",
    "https://*.bumble.com/app/*",
    "https://lovoo.com/*",
    "https://*.lovoo.com/*",
    "https://okcupid.com/*",
    "https://*.okcupid.com/*",
    "https://badoo.com/*",
    "https://*.badoo.com/*",
    "https://pof.com/*",
    "https://*.pof.com/*",
    "https://zoosk.com/*",
    "https://*.zoosk.com/*"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "linux": "Ctrl+Shift+S",
        "windows": "Alt+Shift+S",
        "mac": "Alt+Shift+S"
      }
    }
  }
}