Password Manager

Password Manager

Automatically fills in login fields with passwords from the password vault. The add-on is not standalone and requires the password manager desktop app by F-Secure to be installed. For more information, visit https://www.f-secure.com/id-protection.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "default_locale": "en",
  "name": "__MSG_ext_name__",
  "author": "F-Secure",
  "short_name": "__MSG_ext_name_short__",
  "description": "__MSG_ext_description__",
  "version": "5.1.50",
  "icons": {
    "16": "img/ic_plugin_16.png",
    "48": "img/ic_plugin_48.png",
    "128": "img/ic_plugin_128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "nativeMessaging",
    "http://localhost/*"
  ],
  "browser_action": {
    "default_icon": "img/ic_plugin_off.png",
    "default_popup": "popups/notRunning.html",
    "default_title": "Password Manager by F-Secure",
    "browser_style": false
  },
  "background": {
    "scripts": [
      "shared.js",
      "config.js",
      "fskeyUtils.js",
      "operators.js",
      "customization.js",
      "ext/jquery.js",
      "ext/sjcl.js",
      "background.js",
      "set_status.js",
      "messaging.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "ext/jquery.js",
        "config.js",
        "fskeyUtils.js",
        "operators.js",
        "customization.js",
        "ext/sjcl.js",
        "pagemngr.js",
        "loginhandler.js",
        "savecredentials.js",
        "content.js"
      ],
      "css": [
        "images.css",
        "fskey-base.css",
        "fskey-save-credentials.css"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "popups/addEntry.html",
    "popups/updateEntry.html",
    "popups/pendingEntry.html",
    "img/*",
    "images.css",
    "fskey-base.css",
    "fskey-frame.css"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "56.0"
    }
  }
}