Examine source code of SecurePass Pro

Inspect and view changes in SecurePass Pro 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
{
  "manifest_version": 2,
  "name": "SecurePass Pro",
  "version": "1.0",
  "description": "Generate secure, customizable passwords with advanced options",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "permissions": [
    "storage",
    "clipboardWrite",
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "icons/icon-48.png",
    "default_title": "SecurePass Pro",
    "default_popup": "popup/popup.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{dcd0d6b0-6e5f-4978-90d5-5387aa84644b}"
    }
  }
}