Endless for Youtube

Play and replay that Youtube video to death
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": "Endless for Youtube",
  "description": "Play and replay that Youtube video to death",
  "version": "1.0.10",
  "icons": {
    "16": "assets/icon_16.png",
    "48": "assets/icon_48.png",
    "128": "assets/icon_128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "*://*.youtube.com/*"
  ],
  "background": {
    "scripts": [
      "/js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "/css/styles.css"
      ],
      "js": [
        "/js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "/assets/icon_128.png",
    "default_title": "Settings",
    "default_popup": "/templates/popup.html"
  },
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "manifest_version": 2
}