Threads Downloader

Threads Downloader

Download any Photo or Video from Threads

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.0.0",
  "background": {
    "service_worker": "/js/sw.js"
  },
  "content_scripts": [
    {
      "js": [
        "/js/cs.js"
      ],
      "matches": [
        "https://*.threads.net/*"
      ],
      "css": [
        "/css/content.css"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "downloads"
  ],
  "icons": {
    "128": "/icons/icon_128.png"
  },
  "action": {
    "default_title": "__MSG_name__",
    "default_icon": "/icons/icon_128.png"
  }
}