Amiga Dating Assistant

Amiga Dating Assistant

Amiga is a dating assistant that automates swiping right on Tinder.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Amiga Dating Assistant",
  "version": "0.5",
  "description": "Amiga is a dating assistant that automates swiping right on Tinder.com",
  "background": {
    "scripts": [
      "libs/jquery.min.js",
      "libs/arrive.min.js",
      "env/env.js",
      "utils/storage.js",
      "utils/requests.js",
      "utils/utils.js",
      "background.js",
      "checkout/checkout_background_page.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "manifest_version": 2,
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://tinder.com/app/*"
      ],
      "js": [
        "libs/jquery.min.js",
        "libs/arrive.min.js",
        "env/env.js",
        "utils/storage.js",
        "utils/requests.js",
        "utils/utils.js",
        "checkout/checkout_content_script.js",
        "common.js",
        "tinder/sync.js",
        "tinder/foreverlike_ui.js",
        "tinder/foreverlike_logic.js",
        "tinder/control.js"
      ]
    },
    {
      "matches": [
        "https://amiga.af/firsttimer"
      ],
      "js": [
        "libs/jquery.min.js",
        "libs/arrive.min.js",
        "env/env.js",
        "utils/storage.js",
        "utils/requests.js",
        "utils/utils.js",
        "checkout/checkout_content_script.js"
      ]
    }
  ],
  "permissions": [
    "https://*.tinder.com/*",
    "activeTab",
    "storage",
    "alarms"
  ],
  "web_accessible_resources": [
    "icons/tinder_foreverlike.svg",
    "icons/tinder_stop_foreverlike.svg",
    "checkout/checkout_main_page.js",
    "uphooks/foreverlike.css",
    "uphooks/foreverlike.html"
  ],
  "content_security_policy": "script-src 'self' https://cdn.segment.com https://amiga-prod.herokuapp.com/; object-src 'self'"
}