TT Downloader

TT Downloader

Download Tik tok Videos and Mass Downloads

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TT Downloader",
  "version": "1.2.3",
  "author": "Lalit Narnaulia",
  "description": "Download Tik tok Videos and Mass Downloads",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "declarativeContent",
    "storage",
    "downloads",
    "webRequest",
    "*://*.tiktok.com/*",
    "*://*.tiktokcdn.com/*"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.tiktok.com/",
        "*://*.tiktok.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "js/common.js",
        "js/content.js"
      ],
      "css": [
        "css/style.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "page_action": {
    "default_popup": "popup/popup.html",
    "default_title": "TT Downloader",
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    "images/icon16.png",
    "images/photo.png",
    "css/oval.svg",
    "js/inject.js"
  ]
}