Vault

Vault

Works in conjunction with the Vault Android Password Manager app to allow users to send their passwords from the app to the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Vault",
  "version": "0.0.0.4",
  "icons": {
    "16": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Log In"
  },
  "content_security_policy": "script-src 'self' https://www.gstatic.com; object-src 'self'",
  "web_accessible_resources": [
    "images/*.png"
  ],
  "permissions": [
    "storage"
  ],
  "background": {
    "persistent": true,
    "page": "background.html"
  }
}