Cut YouTube Videos with VideoSegments

Easiest way to remove boring content from YouTube videos. Great for listening to music.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "1.11.8",
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "32": "icons/icon-32.png",
    "64": "icons/icon-64.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "service_worker": "background/background.js"
  },
  "action": {
    "default_icon": {
      "64": "icons/icon-64.png"
    },
    "default_title": "VideoSegments",
    "default_popup": "settings/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "external/popper.js",
        "utils/utils.js",
        "storage/storage.js",
        "observer/observer.js",
        "player/player.js",
        "segmentsbar/segmentsbar.js",
        "smart-cursor/smart-cursor.js",
        "editor/editor.js",
        "modals/modals.js",
        "filters/filters.js",
        "tutorial/tutorial.js",
        "content/content.js"
      ],
      "css": [
        "css/styles.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "unlimitedStorage",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "editor/editor.html",
        "editor/entry.html",
        "modals/small.html",
        "modals/big.html",
        "modals/captcha.html",
        "tutorial/tutorial.html",
        "editor/cut-button.html"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    }
  ]
}