Examine source code of Video Dominator

Inspect and view changes in Video Dominator source codes across current and past versions
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",
  "version": "2.8.0",
  "content_scripts": [
    {
      "js": [
        "content.video-dominator.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "name": "Video Dominator",
  "description": "Hover over any video, hold the right mouse button down, and use mouse wheels or buttons to seek, adjust volume, speed, and more.",
  "icons": {
    "16": "icon-16.png",
    "19": "icon-19.png",
    "24": "icon-24.png",
    "32": "icon-32.png",
    "38": "icon-38.png",
    "48": "icon-48.png",
    "96": "icon-96.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "optional_permissions": [
    "downloads"
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "action": {
    "default_icon": {
      "16": "icon-16.png",
      "19": "icon-19.png",
      "24": "icon-24.png",
      "32": "icon-32.png",
      "38": "icon-38.png",
      "48": "icon-48.png",
      "96": "icon-96.png"
    },
    "default_popup": "popup.html",
    "default_title": "Video Dominator"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "commands": {
    "_execute_action": {
      "description": "Open Popup"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content-mw.youtube.bundle.js"
      ],
      "matches": [
        "https://music.youtube.com/*",
        "https://www.youtube.com/*",
        "https://www.youtube-nocookie.com/*",
        "https://youtube.googleapis.com/*"
      ]
    }
  ]
}