Extension for Tiktok

Extension for Tiktok

A free chrome extension to download video on Tiktok or watch videos in PicInPicture and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Extension for Tiktok",
  "description": "A free chrome extension to download video on Tiktok or watch videos in PicInPicture and more.",
  "version": "1.0.6",
  "action": {
    "default_icon": "icon-48.png"
  },
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "js": [
        "js/content.js"
      ],
      "css": [
        "content.css"
      ],
      "matches": [
        "*://www.tiktok.com/*"
      ]
    }
  ],
  "background": {},
  "permissions": [],
  "web_accessible_resources": [
    {
      "resources": [
        "icon-128.png"
      ],
      "matches": [
        "*://www.tiktok.com/*"
      ]
    }
  ]
}