TikTok Video Keeper

TikTok Video Keeper

Download any video from TikTok. Single and Bulk downloading options available.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "3.0",
  "default_locale": "en",
  "background": {
    "service_worker": "/js/sw.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "downloads",
    "declarativeNetRequest",
    "webRequest"
  ],
  "host_permissions": [
    "https://*.tiktokv.com/*",
    "https://*.tiktok.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/assets/images/icon16.png",
      "19": "/assets/images/icon19.png"
    }
  },
  "icons": {
    "32": "/assets/images/icon32.png",
    "48": "/assets/images/icon48.png",
    "128": "/assets/images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.tiktok.com/*"
      ],
      "js": [
        "/js/app.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",
        "/js/bridge_script.js"
      ],
      "matches": [
        "https://*.tiktok.com/*"
      ]
    }
  ]
}