Replay Youtube Videos

Replay Youtube Videos

Want to replay any Youtube video ? Just click on Replay button and let it play as long as you want it to. Want to play a part of a…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Replay Youtube Videos",
  "version": "1.0",
  "permissions": [
    "*://*/*",
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch?*",
        "http://www.youtube.com/watch?*"
      ],
      "js": [
        "background.js"
      ]
    }
  ]
}