YouTube next chapter button

YouTube next chapter button

Adds a button to the YouTube player to fast-forward to the next section of the video

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_APP_NAME__",
  "version": "2.0.3",
  "description": "__MSG_APP_DESCRIPTION__",
  "author": "Alex Kozack <[email protected]> (https://t.me/kozack)",
  "homepage_url": "https://github.com/cawa-93/youtube-forward-timeline",
  "default_locale": "en",
  "icons": {
    "373": "YouTubeRewind.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{40ab1417-ef94-48d7-8726-6abe7d07b123}",
      "strict_min_version": "109.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}