Examine source code of Tiktok Viewer Online

Inspect and view changes in Tiktok Viewer Online source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Tiktok Viewer Online",
  "version": "1.0.1",
  "description": "Tiktok Online Viewer & Tiktok Browser - Watch Tiktok Video on PC without Account.",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/icon48.png",
    "default_title": "Tiktok Viewer Online on PC",
    "default_popup": "dashboard.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.tiktok.com/@*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "background": {},
  "web_accessible_resources": [
    "images/*"
  ],
  "permissions": [
    "*://*.tiktok.com/",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}