Examine source code of Random Password

Inspect and view changes in Random Password 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": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.0.9",
  "default_locale": "en",
  "homepage_url": "https://exemple.com/firefox/addon/secure-password-generator/",
  "icons": {
    "16": "icons/password-16.png",
    "32": "icons/password-32.png",
    "48": "icons/password-48.png",
    "64": "icons/password-64.png"
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage"
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/password-16.png",
      "32": "icons/password-32.png",
      "48": "icons/password-48.png",
      "64": "icons/password-64.png"
    },
    "default_title": "Secure Password Generator",
    "default_popup": "popup.html",
    "theme_icons": [
      {
        "light": "icons/password-16-light.png",
        "dark": "icons/password-16.png",
        "size": 16
      },
      {
        "light": "icons/password-32-light.png",
        "dark": "icons/password-32.png",
        "size": 32
      }
    ]
  },
  "commands": {
    "generate-password": {
      "suggested_key": {
        "default": "Alt+G"
      },
      "description": "Generate Password"
    },
    "insert-previous-password": {
      "suggested_key": {
        "default": "Alt+L"
      },
      "description": "Insert Previous Password"
    }
  },
  "background": {
    "scripts": [
      "dist/init.js",
      "dist/background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{51650438-c419-4ab7-b460-a7390a3f19c2}"
    }
  }
}