Word Wallet

Word Wallet

Paste any hard-to-type words by context menu click, from customized word list. Plus a simple password manager.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Word Wallet",
  "description": "Paste any hard-to-type words by context menu click, from customized word list. Plus a simple password manager.",
  "version": "1.5",
  "background": {
    "scripts": [
      "common.js",
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "md5.min.js",
        "content.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "clipboardWrite"
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon48.png"
  },
  "browser_action": {
    "default_icon": "icon.png"
  }
}