Peek a Pass

Peek a Pass

Quick peek/retrieve a password from your input

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Peek a Pass",
  "description": "Quick peek/retrieve a password from your input",
  "author": "Nhac Tat Nguyen",
  "version": "1.1.0",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js",
      "js/context-menu/context-menu-handler.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/context-menu/content-scripts.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "browser_action": {
    "default_icon": "images/logo_128.png"
  },
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "contextMenus"
  ],
  "icons": {
    "16": "images/logo_16.png",
    "48": "images/logo_48.png",
    "128": "images/logo_128.png"
  }
}