JPwd

JPwd

This extension allows you to easily show a password field in any site, by hovering or double clicking on the password field

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "version": "2.0.0",
  "default_locale": "en",
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon_19.png",
      "38": "images/icon_38.png"
    },
    "default_title": "__MSG_settingsTitle__",
    "default_popup": "settings.html"
  },
  "author": "JChrist",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "bower_components/jQuery/dist/jquery.min.js",
        "scripts/jpwdConfig.js",
        "scripts/jpwd.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "bower_components/jQuery/dist/jquery.min.js",
    "bower_components/jQuery/dist/jquery.min.map",
    "scripts/jpwdConfig.js"
  ],
  "permissions": [
    "storage"
  ]
}