Twitter Image Downloader

Twitter Image Downloader

Download and rename original images on your Twitter timeline

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Twitter Image Downloader",
  "short_name": "TwiImgDLer",
  "version": "2.2.10",
  "description": "Download and rename original images on your Twitter timeline",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "dist/background.bundle.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://pro.twitter.com/*"
      ],
      "js": [
        "dist/content.bundle.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "dist/options.html"
  },
  "permissions": [
    "contextMenus",
    "downloads",
    "storage"
  ],
  "host_permissions": [
    "https://twitter.com/",
    "https://pro.twitter.com/"
  ]
}