Passwords for Nextcloud browser add-on

Passwords for Nextcloud browser add-on

The official browser extension for the Passwords app for Nextcloud.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "2.6.0",
  "description": "__MSG_extensionDescription__",
  "author": "Marius Wieschollek",
  "default_locale": "en",
  "icons": {
    "16": "img/passwords-16.png",
    "32": "img/passwords-32.png",
    "48": "img/passwords-48.png",
    "96": "img/passwords-96.png",
    "128": "img/passwords-128.png"
  },
  "browser_action": {
    "default_icon": "img/passwords.svg",
    "default_title": "__MSG_browserActionTitle__",
    "default_popup": "html/popup.html",
    "browser_style": true,
    "theme_icons": [
      {
        "light": "img/passwords-light.svg",
        "dark": "img/passwords-dark.svg",
        "size": 12
      },
      {
        "light": "img/passwords-light.svg",
        "dark": "img/passwords-dark.svg",
        "size": 16
      },
      {
        "light": "img/passwords-light.svg",
        "dark": "img/passwords-dark.svg",
        "size": 32
      },
      {
        "light": "img/passwords-light.svg",
        "dark": "img/passwords-dark.svg",
        "size": 64
      },
      {
        "light": "img/passwords-light.svg",
        "dark": "img/passwords-dark.svg",
        "size": 96
      },
      {
        "light": "img/passwords-light.svg",
        "dark": "img/passwords-dark.svg",
        "size": 128
      }
    ]
  },
  "options_ui": {
    "page": "html/options.html",
    "browser_style": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "95.0"
    }
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "protocol_handlers": [
    {
      "protocol": "ext+passlink",
      "name": "Passwords for Firefox",
      "uriTemplate": "html/passlink.html?link=%s"
    }
  ],
  "content_security_policy": "script-src 'self' 'wasm-unsafe-eval' blob:; object-src 'self' 'wasm-unsafe-eval';",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/client.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "*://*/*",
    "tabs",
    "menus",
    "storage",
    "notifications",
    "clipboardWrite",
    "webRequest",
    "webRequestBlocking"
  ],
  "optional_permissions": [
    "clipboardRead"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+0"
      }
    }
  }
}