Twitch Clip Downloader

Twitch Clip Downloader

Simple Twitch Clip Downloader! Just click on the "Download Twitch Clip" button to save Twitch clips locally. 1. Click on the game…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitch Clip Downloader",
  "version": "1.0",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png",
    "default_title": "Twitch Clip Downloader"
  },
  "permissions": [
    "tabs"
  ]
}