Examine source code of TikTok Content Filter

Inspect and view changes in TikTok Content Filter 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TikTok Content Filter",
  "description": "Filter out unwanted content on TikTok by words in the title, hashtag, or music.",
  "version": "0.1.1",
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  },
  "icons": {
    "128": "icon.png"
  },
  "action": {
    "default_title": "TikTok Content Filter",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.tiktok.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ]
}