HashMask

HashMask

Secure password visualization for Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "HashMask",
  "version": "1.2.1",
  "manifest_version": 2,
  "description": "Secure password visualization for Chrome.",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "lib/sjcl.js",
      "src/bg.js"
    ]
  },
  "options_page": "html/options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "src/util.js",
        "lib/sjcl.js",
        "lib/jquery-1.7.2.min.js",
        "lib/jcade.js",
        "lib/jquery.sparkline.min.js",
        "src/hashmask.js",
        "src/inject.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icons/16.png",
    "default_title": "Enable/disable HashMask",
    "default_popup": "html/popup.html"
  },
  "offline_enabled": true,
  "permissions": [],
  "homepage_url": "https://github.com/wyantb/HashMask"
}