Drive Password - Google Drive™ secret manager

Drive Password - Google Drive™ secret manager

New generation secret manager entirely based on Google Drive. None of your passwords is stored on our servers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extName__",
  "short_name": "DrivePasswrd",
  "description": "__MSG_extDescription__",
  "homepage_url": "https://drivepassword.com/",
  "version": "2.1.1",
  "author": "Promotino Ltd.",
  "icons": {
    "16": "res/images/logos/icon-16.png",
    "48": "res/images/logos/icon-48.png",
    "128": "res/images/logos/icon-128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "res/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "toggle-current-website": {
      "suggested_key": {
        "default": "Alt+Shift+2",
        "mac": "Command+Shift+2"
      },
      "description": "__MSG_extToggleButton__"
    },
    "toggle-power-extension": {
      "suggested_key": {
        "default": "Alt+Shift+3",
        "mac": "Command+Shift+3"
      },
      "description": "Toggle on and off the extension"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content/content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "offline_enabled": true,
  "action": {
    "default_icon": "res/images/logos/icon-48.png",
    "default_popup": "html/popup/popup.html",
    "default_title": "Drive Password"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  }
}