TTNote: Video Downloader and Saver

TTNote: Video Downloader and Saver

Download videos without watermark from TT. Save and manage videos in a single home.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "manifest_version": 3,
  "version": "1.0.23.7",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://tiktok.com/*",
        "https://www.tiktok.com/*",
        "https://denote.net/*"
      ],
      "js": [
        "content-script/index.js"
      ],
      "css": [
        "content-script/index.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "content-script/inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background/index.js"
  },
  "action": {
    "default_popup": "popup/index.html"
  },
  "icons": {
    "16": "icon/128.png",
    "32": "icon/128.png",
    "48": "icon/128.png",
    "128": "icon/128.png",
    "300": "icon/128.png",
    "500": "icon/128.png"
  },
  "host_permissions": [
    "*://*.tiktok.com/*",
    "https://tiktok.com/*",
    "https://*.tiktokcdn.com/*",
    "https://*.tiktokv.com/*",
    "https://*.musical.ly/*",
    "*://*.aliyuncs.com/*",
    "*://*.denote.net/*"
  ],
  "permissions": [
    "downloads",
    "storage"
  ]
}