SNIPACLIP - Mange/Download Twitch Clips

SNIPACLIP - Mange/Download Twitch Clips

Download Twitch clips with a single click, or open them on SNIPACLIP to add them to playlists! SNIPACLIP allows you to manage…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SNIPACLIP - Mange/Download Twitch Clips",
  "short_name": "SNIPACLIP",
  "version": "1.0.3",
  "browser_action": {
    "default_icon": "images/logo-128.png",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "16": "images/logo-16.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitch.tv/*"
      ],
      "js": [
        "js/jquery-3.4.1.min.js",
        "js/content.js"
      ],
      "css": [
        "css/styles.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "scripts": [
      "js/jquery-3.4.1.min.js",
      "js/background.js"
    ]
  },
  "permissions": [
    "webNavigation",
    "contextMenus"
  ]
}