Download Twitter Video(Support Video, DMS video, Image, GIF)

Download Twitter Video(Support Video, DMS video, Image, GIF)

Free and easy way to download Twitter videos! Easily download videos from Twitter anytime, anywhere, in MP4 format.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "homepage_url": "https://tweetgrok.ai/",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "content.twitter.js"
      ],
      "css": [
        "./css/index.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "content.bundle.js"
      ],
      "css": [],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "lib/ffmpeg.min.js"
      ]
    },
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "lib/ffmpeg-core.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "icons/128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "images/*",
        "inject.bundle.js",
        "lib/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version": "1.0.17",
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';",
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval' 'wasm-unsafe-eval'; child-src 'self';"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}