Twitch DVR

Twitch DVR adds DVR style controls to Twitch streams
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitch DVR",
  "description": "Twitch DVR adds DVR style controls to Twitch streams",
  "version": "1.1",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "img/icon128.png"
  },
  "icons": {
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitch.tv/*"
      ],
      "js": [
        "js/dvr.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "html/playerSeek.html"
  ]
}