Twitch Clip Downloader

Twitch Clip Downloader

Simplest way to download clips on Twitch!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Twitch Clip Downloader",
  "version": "1.8",
  "description": "Simplest way to download clips on Twitch!",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "downloads"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "jquery-1.4.2.js",
        "dashboard.js"
      ],
      "matches": [
        "https://dashboard.twitch.tv/*"
      ]
    },
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "clips.js"
      ],
      "matches": [
        "https://clips.twitch.tv/*"
      ]
    },
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "twitch.js"
      ],
      "matches": [
        "https://www.twitch.tv/*"
      ]
    }
  ]
}