TikTok Gamepad

TikTok Gamepad

Adds game controlor support to the tiktok web app

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TikTok Gamepad",
  "description": "Adds game controlor support to the tiktok web app",
  "version": "1.0",
  "manifest_version": 2,
  "icons": {
    "256": "256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.tiktok.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    },
    {
      "matches": [
        "https://tiktok.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}