Threads Video Downloader - Threadster

Threads Video Downloader - Threadster

Download Threads videos and images using Threadster.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.2.0",
  "description": "Download Threads videos and images using Threadster.",
  "name": "Threads Video Downloader - Threadster",
  "manifest_version": 3,
  "icons": {
    "16": "src/icons/icon-16.png",
    "32": "src/icons/icon-32.png",
    "48": "src/icons/icon-48.png",
    "128": "src/icons/icon-128.png"
  },
  "action": {
    "default_popup": "src/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.threads.net/*"
      ],
      "js": [
        "src/jquery.js",
        "src/index.js"
      ],
      "css": [
        "src/css/index.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/index.js"
      ],
      "matches": [
        "*://*.threads.net/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.threads.net/*"
  ]
}