Easy Twitch Vods

Easy Twitch Vods

This app save's Twitch VOD link's. It's a good way to keep track of where you ended your last Twitch session

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Easy Twitch Vods",
  "description": "This app save's Twitch VOD link's. It's a good way to keep track of where you ended your last Twitch session",
  "version": "1.2.0",
  "icons": {
    "16": "EasyTwitchLogo.png",
    "48": "EasyTwitchLogo.png",
    "128": "EasyTwitchLogo.png"
  },
  "browser_action": {
    "default_icon": "EasyTwitchLogo.png",
    "default_popup": "index.html"
  },
  "background": {
    "persistent": true,
    "page": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.twitch.tv/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "storage",
    "tabs",
    "activeTab"
  ]
}