Tiktok Comment Saver | Save comments in CSV

Tiktok Comment Saver | Save comments in CSV

It's a simple tool that helps to export list of comments from Tiktok videos

Merlin
Additional files are visible only to premium users

manifest.json


{
  "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.0",
  "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/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}