Web Client for TikTok™ - TikSide

Run web client for TikTok™ just like your favorite mobile app.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": "assets/icons/128.png",
    "default_title": "__MSG_name__"
  },
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "open-sidebar": {
      "description": "Open Sidebar",
      "suggested_key": {
        "default": "Alt+E",
        "linux": "Alt+E",
        "mac": "Command+E",
        "windows": "Alt+E"
      }
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "sys-content.js"
      ],
      "matches": [
        "https://*.tiktok.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "enabled": true,
        "id": "ruleset_1",
        "path": "rules_1.json"
      }
    ]
  },
  "default_locale": "en",
  "description": "__MSG_desc__",
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "32": "assets/icons/32.png",
    "64": "assets/icons/64.png",
    "128": "assets/icons/128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_name__",
  "permissions": [
    "storage",
    "sidePanel",
    "declarativeNetRequest"
  ],
  "side_panel": {
    "default_path": "content-sidebar.html"
  },
  "version": "2.1.9",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "*"
      ]
    }
  ]
}