Automatic Swiper

Automatic Swiper

Let Chrome swipe while you are at the gym!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Automatic Swiper",
  "version": "1.0.16",
  "manifest_version": 3,
  "author": "[email protected]",
  "homepage_url": "https://hawkstheoremmaster.gatsbyjs.io/",
  "description": "Let Chrome swipe while you are at the gym!",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.tinder.com/*"
      ],
      "js": [
        "tinder.js"
      ]
    },
    {
      "matches": [
        "*://*.badoo.com/*"
      ],
      "js": [
        "badoo.js"
      ]
    },
    {
      "matches": [
        "*://*.bumble.com/*"
      ],
      "js": [
        "bumble.js"
      ]
    },
    {
      "matches": [
        "*://*.pof.com/*"
      ],
      "js": [
        "pof.js"
      ]
    },
    {
      "matches": [
        "*://*.happn.app/*"
      ],
      "js": [
        "happn.js"
      ]
    },
    {
      "matches": [
        "*://*.okcupid.com/*"
      ],
      "js": [
        "okcupid.js"
      ]
    },
    {
      "matches": [
        "*://*.lovoo.com/*"
      ],
      "js": [
        "lovoo.js"
      ]
    }
  ],
  "action": {
    "default_title": "Start swiping!",
    "default_icon": {
      "16": "swipe-right16.png",
      "32": "swipe-right32.png",
      "64": "swipe-right64.png",
      "128": "swipe-right128.png"
    }
  },
  "options_ui": {
    "page": "index.html",
    "open_in_tab": false
  },
  "icons": {
    "16": "swipe-right16.png",
    "32": "swipe-right32.png",
    "64": "swipe-right64.png",
    "128": "swipe-right128.png"
  },
  "permissions": [
    "declarativeContent",
    "storage",
    "activeTab",
    "debugger"
  ]
}