Enable Chapters for Youtube

Enable Chapters for Youtube

This will enable the Chapters feature for Youtube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Enable Chapters for Youtube",
  "version": "1.0.0",
  "author": "Robin van Nunen",
  "description": "This will enable the Chapters feature for Youtube.",
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "inject.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "content.js"
  ]
}