Repeat Youtube

Repeat Youtube

Repeat Youtube videos on the main page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Repeat Youtube",
  "description": "Repeat Youtube videos on the main page",
  "version": "1.0.2",
  "permissions": [
    "tabs",
    "http://www.youtube.com/*/",
    "https://www.youtube.com/*/"
  ],
  "icons": {
    "16": "icons/on_icon16.png",
    "48": "icons/on_icon48.png",
    "128": "icons/on_icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://www.youtube.com/*",
        "https://www.youtube.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ]
}