Webpass: password manager for companies

Webpass: password manager for companies

Webpass gives you an ability of maximum control over the creation, storage, provision of access and accounting.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "0.23",
  "default_locale": "ru",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage",
    "tabs",
    "privacy",
    "contextMenus",
    "clipboardRead",
    "clipboardWrite"
  ],
  "icons": {
    "16": "/images/16/logo_regular.png",
    "48": "/images/48/logo_regular.png",
    "128": "/images/128/logo_regular.png"
  },
  "web_accessible_resources": [
    "images/*.png",
    "iframe.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/content.js"
      ],
      "css": [
        "/css/content_css.css"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "/js/bg.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "index.html"
  },
  "options_ui": {
    "page": "index.html",
    "open_in_tab": true
  },
  "content_security_policy": "script-src 'self' https://www.google.com https://www.gstatic.com; object-src 'self'"
}