Examine source code of Open with VLC

Inspect and view changes in Open with VLC 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",
  "manifest_version": 3,
  "name": "Open with VLC",
  "version": "1.5.2",
  "description": "Open websites with VLC. This extension is not affiliated or endorsed by the VLC team or the VideoLAN organization.",
  "homepage_url": "https://github.com/stefansundin/open-with-vlc",
  "author": "Stefan Sundin",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "service_worker": "sw.js"
  },
  "options_ui": {
    "page": "options.html"
  },
  "action": {
    "default_icon": {
      "16": "icon.png",
      "19": "icon.png",
      "38": "icon.png"
    },
    "default_title": "Open page with VLC",
    "default_popup": "popup.html"
  },
  "commands": {
    "open-vlc": {
      "suggested_key": {
        "default": "Alt+Shift+V"
      },
      "description": "Open page with VLC"
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "scripting",
    "contextMenus",
    "storage"
  ],
  "minimum_chrome_version": "96"
}