YouTube Chapterize

YouTube Chapterize

Provides convenience functions to handle YouTube chapters.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Chapterize",
  "description": "Provides convenience functions to handle YouTube chapters.",
  "version": "2",
  "manifest_version": 3,
  "permissions": [
    "scripting"
  ],
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.youtube.com/*",
        "https://www.youtube.com/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ]
}