UsePass

UsePass

UsePass is a chrome extension to replace the bookmark button of Passpack.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "UsePass",
  "description": "UsePass is a chrome extension to replace the bookmark button of Passpack.",
  "version": "0.1.19",
  "browser_action": {
    "default_icon": "icons/icon.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus"
  ],
  "background": {
    "page": "usepass.html"
  },
  "options_page": "options.html",
  "icons": {
    "16": "icons/icon.png",
    "128": "icons/icon128.png"
  },
  "minimum_chrome_version": "5.0.316.0",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/settings.js",
        "js/functions.js",
        "js/contenthelper.js",
        "js/passpackhandler.js",
        "js/contentscript.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}