Examine source code of MasterPassword for edge

Inspect and view changes in MasterPassword for edge 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
{
  "name": "MasterPassword for edge",
  "version": "3.0.0",
  "version_name": "3.0.0",
  "manifest_version": 3,
  "description": "Remember your MasterPassword, and this app will generate unique passwords for every other site you visit",
  "author": "Torbjorn Tyridal (ttyridal)",
  "homepage_url": "https://github.com/ttyridal/masterpassword-firefox",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "src/bg/background.js",
    "type": "module"
  },
  "incognito": "split",
  "options_page": "src/options/index.html",
  "options_ui": {
    "page": "src/options/options.html"
  },
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "24": "icons/icon19.png",
      "32": "icons/icon32.png"
    },
    "default_title": "MasterPassword",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+P",
        "mac": "MacCtrl+Shift+P"
      }
    }
  },
  "permissions": [
    "activeTab",
    "scripting",
    "clipboardWrite",
    "storage",
    "alarms",
    "nativeMessaging"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}