Show Pass

Show Pass

Show Pass

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Show Pass",
  "short_name": "SP",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Show Pass",
  "icons": {
    "16": "icon.png"
  },
  "browser_action": {
    "default_title": "Show Pass"
  },
  "background": {
    "scripts": [
      "jquery.min.js",
      "popup.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery.min.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "activeTab",
    "tabs",
    "*://*/*"
  ]
}