Password Tote

Password Tote

Assists with logging into websites/services.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Password Tote",
  "version": "1.0.6.15",
  "manifest_version": 2,
  "description": "Assists with logging into websites/services.",
  "icons": {
    "16": "ptote16logo.png",
    "48": "ptote48logo.png",
    "128": "ptote128logo.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "ptote24logo.png",
    "default_title": "Password Tote",
    "default_popup": "main.html"
  },
  "permissions": [
    "chrome://favicon/",
    "tabs",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.passwordtote.com/online/passwords.aspx"
      ],
      "js": [
        "jquery-1.7.2.min.js",
        "exists.js"
      ]
    }
  ]
}