Youtube repeat, speed up HTML5 video

Youtube repeat, speed up HTML5 video

Repeat, speed up, slow down Youtube and any HTML5 video. Create a loop with accuracy to milliseconds. Create mixed playlists.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "Youtube repeat Controller",
  "version": "1.0.3",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "64": "img/logo64.png",
    "128": "img/logo128.png"
  },
  "background": {
    "scripts": [
      "jquery.js",
      "analytics.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "file:///*"
      ],
      "match_about_blank": true,
      "css": [
        "local.css"
      ],
      "js": [
        "local.js"
      ]
    },
    {
      "all_frames": true,
      "matches": [
        "file:///*",
        "http://*/*",
        "https://*/*"
      ],
      "match_about_blank": true,
      "js": [
        "update.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "img/logo16.png",
      "48": "img/logo48.png",
      "64": "img/logo64.png",
      "128": "img/logo128.png"
    },
    "default_title": "Video Controller",
    "default_popup": "popup.html"
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "file:///*"
  ],
  "web_accessible_resources": [
    "img/*.svg",
    "run/*.js",
    "run/*.css"
  ]
}