Reveal

Reveal

Context menu extension to view auto completed hidden password.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reveal",
  "description": "Context menu extension to view auto completed hidden password.",
  "version": "1.0",
  "author": "Shivkanthb",
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "icons": {
    "16": "images/eyecon-16x16.png",
    "48": "images/eyecon-48x48.png",
    "72": "images/eyecon-72x72.png",
    "128": "images/eyecon-128x128.png"
  },
  "background": {
    "scripts": [
      "scripts/event.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "scripts/content_script.js"
      ]
    }
  ]
}