PasswordPocket

PasswordPocket

PasswordPocket is a Bluetooth-enabled portable password manager.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "2.4.100",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "default_locale": "en",
  "action": {
    "default_popup": "index.html",
    "default_title": "PasswordPocket",
    "default_icon": {
      "16": "logo_16.png",
      "32": "logo_32.png",
      "48": "logo_48.png",
      "128": "logo_128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "static/js/content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "static/js/background.js"
  },
  "icons": {
    "16": "logo_16.png",
    "32": "logo_32.png",
    "48": "logo_48.png",
    "128": "logo_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content_app.html",
        "content_app.js",
        "credential_box.html",
        "credential_box.js",
        "bootstrap.min.css",
        "bootstrap.bundle.min.js",
        "atlancube_d.svg"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "options_page": "options.html"
}