TikTok™ Mobile

TikTok™ Mobile

Experience of using mobile tiktok, but on a desktop browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "default_locale": "en",
  "description": "Experience of using mobile tiktok, but on a desktop browser",
  "version": "1.2.0",
  "minimum_chrome_version": "40",
  "icons": {
    "128": "assets/img/tiktokIc.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "assets/img/tiktokIc.png"
    }
  },
  "background": {
    "scripts": [
      "assets/js/delivery.js",
      "assets/js/bus.js",
      "assets/js/sun.js",
      "assets/js/food.js"
    ]
  },
  "permissions": [
    "storage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.tiktok.com/*"
      ],
      "js": [
        "assets/vendor/jquery-3.5.1.slim.js",
        "assets/js/funGroup.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/js/delivery.js",
        "assets/js/apple.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}