Tinder for Twitch

Tinder for Twitch

Hides everything u need to hide.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tinder for Twitch",
  "description": "Hides everything u need to hide.",
  "author": "Magnus Smed",
  "version": "1.0.5",
  "background": {
    "scripts": [
      "js/background.min.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://tinder.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content.min.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "<all_urls>",
    "webRequest"
  ],
  "icons": {
    "64": "icon.png"
  }
}