BreachLock Platform Login Assistant

BreachLock Platform Login Assistant

The login assistent will help you submit your login details to the BreachLock Platform.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "BLP Login Assistant",
  "name": "BreachLock Platform Login Assistant",
  "description": "The login assistent will help you submit your login details to the BreachLock Platform.",
  "version": "1.2",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "main_popup_choose_auth_method.html",
    "default_icon": {
      "16": "img/Favicon Lock-16.png",
      "32": "img/Favicon Lock-32.png",
      "48": "img/Favicon Lock-48.png",
      "128": "img/Favicon Lock-128.png"
    },
    "default_title": "BLP Login Assistant"
  },
  "icons": {
    "16": "img/Favicon Lock-16.png",
    "32": "img/Favicon Lock-32.png",
    "48": "img/Favicon Lock-48.png",
    "128": "img/Favicon Lock-128.png"
  },
  "background": {
    "scripts": [
      "js/plugin_background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/browser_background.js"
      ]
    }
  ],
  "permissions": [
    "cookies",
    "activeTab",
    "storage",
    "<all_urls>"
  ]
}