My Likes

My Likes

Descubra quem te curtiu no Tinder®!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "My Likes",
  "version": "0.0.7",
  "icons": {
    "16": "assets/icons/favicon-16.png",
    "32": "assets/icons/favicon-32.png",
    "48": "assets/icons/favicon-48.png",
    "128": "assets/icons/favicon-128.png"
  },
  "description": "Descubra quem te curtiu no Tinder®!",
  "homepage_url": "https://mylikes.app",
  "short_name": "My Likes",
  "permissions": [
    "tabs"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "author": "xstudiodigital",
  "minimum_chrome_version": "49",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/favicon-16.png",
      "32": "assets/icons/favicon-32.png",
      "48": "assets/icons/favicon-48.png",
      "128": "assets/icons/favicon-128.png"
    },
    "default_title": "My Likes",
    "chrome_style": false
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true,
    "chrome_style": false
  },
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://tinder.com/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "assets/icons/favicon-48.png",
    "assets/icons/fire.png"
  ]
}