Twitter To Mp4 Downloader

Twitter To Mp4 Downloader

Downloads Twitter videos, gifs and images into your personal computer and many more with just a click of a mouse!

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 To Mp4 Downloader",
  "version": "1",
  "description": "Downloads Twitter videos, gifs and images into your personal computer and many more with just a click of a mouse!",
  "author": "Mohamed Ashour",
  "background": {
    "service_worker": "dist/js/background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "dist/HTML/popup.html",
    "default_title": "Twitter Download"
  },
  "content_scripts": [
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "dist/js/ExtPay.js"
      ],
      "run_at": "document_start",
      "type": "module"
    },
    {
      "all_frames": true,
      "js": [
        "dist/js/ExtPay.js",
        "dist/js/content-script.js",
        "dist/js/content.js"
      ],
      "css": [
        "dist/CSS/content.css"
      ],
      "matches": [
        "*://twitter.com/*"
      ],
      "run_at": "document_start",
      "type": "module"
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://*.twitter.com/*"
  ]
}