YouTube Chapters In Player

YouTube Chapters In Player

Shows YouTube chapters right in the player

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube Chapters In Player",
  "description": "Shows YouTube chapters right in the player",
  "version": "0.3.2",
  "applications": {
    "gecko": {
      "id": "youtube-chapters-in-player@ris58h"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "page": "background/background.html"
  },
  "web_accessible_resources": [
    "background/youtubei.js"
  ],
  "permissions": [
    "https://www.youtube.com/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://www.youtube-nocookie.com/embed/*"
      ],
      "all_frames": true,
      "js": [
        "content/content.js"
      ],
      "css": [
        "content/content.css"
      ]
    }
  ]
}