TikPak Downloader

TikPak Downloader

TikPak Downloader, helps you view and download videos from Tiktok in one click!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "TikPak",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "images/icons/16.png",
    "24": "images/icons/24.png",
    "32": "images/icons/32.png",
    "128": "images/icons/128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "TikPak",
    "default_icon": {
      "16": "images/icons/16.png",
      "24": "images/icons/24.png",
      "32": "images/icons/32.png",
      "128": "images/icons/128.png"
    }
  },
  "version": "2.1.2",
  "content_scripts": [
    {
      "matches": [
        "*://*.tiktokcdn.com/*",
        "*://*.tiktok.com/*",
        "*://tiktok.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "*://*.tiktokcdn.com/*",
        "*://*.tiktok.com/*",
        "*://tiktok.com/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "downloads",
    "tabs"
  ]
}