Youtube-Replayer

Youtube-Replayer

Hope this help!

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-Replayer",
  "version": "0.0.0.5",
  "description": "Hope this help!",
  "background_page": "background.html",
  "icons": {
    "18": "images/autoreplay-18.png",
    "24": "images/autoreplay-24.png",
    "32": "images/autoreplay-32.png",
    "48": "images/autoreplay-48.png",
    "64": "images/autoreplay-64.png",
    "128": "images/autoreplay-128.png"
  },
  "permissions": [
    "declarativeContent"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "http://www.youtube.com/*",
        "https://www.youtube.com/*"
      ],
      "css": [
        "css/content.css",
        "css/checkbox.css",
        "css/bootstrap.css"
      ],
      "js": [
        "scripts/jquery.js",
        "scripts/bootstrap.js",
        "scripts/content.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": "images/autoreplay-32.png",
    "default_popup": "html/popup.html",
    "default_title": "Click here!"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  }
}