Web TikTok

Web TikTok

Watch tik tok in mobile form in a browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.3",
  "minimum_chrome_version": "88",
  "default_locale": "en",
  "icons": {
    "128": "/assets/icon.png"
  },
  "action": {},
  "background": {
    "service_worker": "/view/visorPage.js"
  },
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "scripting"
  ],
  "host_permissions": [
    "http://*/**",
    "https://*/**"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/all_urls/onload.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}