Padloc

Padloc

Padloc Browser Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "icons": {
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "activeTab",
    "contextMenus",
    "alarms"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+P",
        "mac": "Command+Shift+P",
        "chromeos": "Ctrl+Shift+P",
        "linux": "Ctrl+Shift+P"
      }
    },
    "open-next": {
      "suggested_key": {
        "default": "Ctrl+Shift+Right"
      },
      "description": "Open Next Vault Item"
    },
    "open-previous": {
      "suggested_key": {
        "default": "Ctrl+Shift+Left"
      },
      "description": "Open Previous Vault Item"
    }
  },
  "version": "4.3.0.9",
  "version_name": "4.3.0",
  "name": "Padloc",
  "description": "Padloc Browser Extension"
}