Twitter Video Downloader

Download twitter videos easily.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Twitter Video Downloader",
  "description": "Download twitter videos easily.",
  "version": "3.0",
  "icons": {
    "128": "images/icon.png"
  },
  "applications": {
    "gecko": {
      "id": "twitter-video-downloader-toolbarteam101@gmail.com",
      "strict_min_version": "42.0"
    }
  },
  "browser_action": {
    "default_icon": "images/icon.png"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "https://twitter.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "matches": [
        "*://twitter.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.png",
    "style.css"
  ]
}