Tiktok Video Downloader - TikSaver

Tiktok Video Downloader - TikSaver

Easily download videos from TikTok with both individual and bulk downloading choices.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.14",
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "https://*.tiktokv.com/*",
    "https://*.tiktok.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "/assets/images/icon128.png"
    }
  },
  "icons": {
    "128": "/assets/images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.tiktok.com/*"
      ],
      "js": [
        "content.bundle.js",
        "js/iconfont.js"
      ],
      "css": [
        "/assets/app.css",
        "/assets/button.css"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "assets/rules.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/images/*.svg",
        "/assets/images/*.png",
        "icons/*",
        "images/*",
        "inject.bundle.js"
      ],
      "matches": [
        "https://*.tiktok.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}