TikClient - Web Client for TikTok™

TikClient - Web Client for TikTok™

Run web client for TikTok just like your favorite mobile app.

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.1.4",
  "minimum_chrome_version": "88",
  "default_locale": "en",
  "icons": {
    "16": "/assets/16.png",
    "32": "/assets/32.png",
    "48": "/assets/48.png",
    "128": "/assets/128.png",
    "300": "/assets/300.png",
    "500": "/assets/500.png"
  },
  "action": {},
  "background": {
    "service_worker": "/js/background.js"
  },
  "permissions": [
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "http://*/**",
    "https://*/**"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/content-scripts.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}