Tinder Auto Like (Swiper)

Tinder Auto Like (Swiper)

Приложение помогает понравится большому количеству женщин из Tinder. Tinder Auto Swipe | Tinder Auto Liker | Tinder Swipe Right

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tinder Auto Like (Swiper)",
  "version": "0.0.3",
  "description": "Приложение помогает понравится большому количеству женщин из Tinder. Tinder Auto Swipe | Tinder Auto Liker | Tinder Swipe Right",
  "options_page": "src/pages/options/index.html",
  "background": {
    "service_worker": "src/pages/background/index.js"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-32.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://tinder.com/app/recs*",
        "https://tinder.com/",
        "https://tinder.com/app/matches*"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "css": [
        "assets/css/contentStyle.chunk.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-32.png"
      ],
      "matches": [
        "https://tinder.com/*"
      ]
    }
  ]
}