Safeguard

Safeguard

Decentralized password manager

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Decentralized password manager",
  "version": "0.0.2",
  "name": "Safeguard",
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.bundle.js"
      ]
    }
  ],
  "permissions": [
    "nativeMessaging",
    "tabs",
    "notifications",
    "*://*/*"
  ],
  "icons": {
    "128": "icon-128.png"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "http://127.0.0.1:3000",
    "https://www.safeguard.icu"
  ]
}