Twitch Pause / Resume Live

Twitch Pause / Resume Live

Saves the middle of a twitch stream (or vod) for later viewing. Resume watching later spoiler free.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitch Pause / Resume Live",
  "description": "Saves the middle of a twitch stream (or vod) for later viewing. Resume watching later spoiler free.",
  "version": "0.2",
  "manifest_version": 2,
  "icons": {
    "16": "/icons/icon16.png",
    "32": "/icons/icon32.png",
    "48": "/icons/icon48.png",
    "64": "/icons/icon64.png",
    "128": "/icons/icon128.png"
  },
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "/icons/icon128.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "*://*.twitch.tv/*",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.twitch.tv/*",
        "*://*.youtube.com/*"
      ],
      "js": [
        "/jquery.js",
        "/content_script.js"
      ],
      "run_at": "document_start"
    }
  ]
}