Complete ID: Password Manager

Complete ID: Password Manager

Password Manager will help keep your account logins secure and account access protected.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.2.0",
  "name": "Complete ID Password Manager",
  "description": "An easy-to-use password manager for creating, keeping and using secure passwords.",
  "icons": {
    "48": "brand/assets/images/icon-48.png"
  },
  "permissions": [
    "alarms",
    "downloads",
    "storage",
    "tabs",
    "webNavigation",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content/index.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://url.invalid/*"
      ],
      "js": [
        "content/cognito_redirect_handler.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "*.png",
    "*.svg",
    "brand/*.json",
    "brand/assets/icons/*",
    "brand/assets/images/*",
    "brand/assets/fonts/*",
    "gen/strings.*"
  ],
  "browser_action": {
    "default_icon": {
      "48": "brand/assets/images/status-locked-32.png"
    },
    "default_title": "Complete ID Password Manager",
    "default_popup": "html/popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{5476e336-db79-4b03-b194-6c08c21d8835}"
    }
  }
}