Examine source code of Tiktok Comment Saver | Save comments in CSV

Inspect and view changes in Tiktok Comment Saver | Save comments in CSV 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": "Tiktok Comment Saver | Save comments in CSV",
  "description": "It's a simple tool that helps to export list of comments from Tiktok videos",
  "version": "1.0.2",
  "manifest_version": 2,
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_title": "Tiktok Comment Saver",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.tiktok.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "web_accessible_resources": [
    "inject.js"
  ],
  "permissions": [
    "storage",
    "downloads",
    "https://nicext.com/",
    "https://*.tiktok.com/api/*"
  ]
}