Twitter Video Downloader

Twitter Video Downloader

Download twitter videos on your chrome browser for free in a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "/js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon_24.png",
    "default_title": "__MSG_appName__"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/jquery.js",
        "js/content.js"
      ],
      "matches": [
        "*://*.twitter.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "permissions": [
    "storage"
  ],
  "short_name": "twittervideodownloader",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.0.7"
}