see-password

see-password

Temporarily replace the asterisks in a password field with readable characters. When you visit a page with a password field an eye icon will appear in the address bar. Clicking this bar will reveal the password. Clicking again will hide it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "0.4resigned1",
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://github.com/mjaquiery/SeePassword",
  "icons": {
    "48": "icons/eye.svg",
    "96": "icons/eye.svg"
  },
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "page_action": {
    "default_icon": "icons/show.svg",
    "default_title": "__MSG_iconTitleShow__"
  },
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/clickhandler.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{9fc6ffbd-fbc4-43ac-9376-f6d789bea76d}"
    }
  }
}