YouTube Repeat

YouTube Repeat

Repeats a YouTube video

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YouTube Repeat",
  "short_name": "Repeat",
  "description": "Repeats a YouTube video",
  "version": "1.1",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "page_action": {
    "default_icon": "images/icon.png",
    "default_title": "Repeat"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content_script.js"
      ],
      "matches": [
        "*://youtube.com/*",
        "*://*.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs"
  ]
}