Examine source code of TiktokRevenue

Inspect and view changes in TiktokRevenue 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",
  "name": "TiktokRevenue",
  "version": "2.1",
  "description": "View tiktok videos revenue.",
  "manifest_version": 3,
  "author": "Torrextension",
  "icons": {
    "128": "logotransparent.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": "logotransparent.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.tiktok.com/@*"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "ExtPay.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "incognito": "split"
}