QR Hook Password Manager

QR Hook Password Manager

QR Hook lets you hook into your browser and access your web accounts seamlessly from your mobile phone.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "default_icon": {
      "48": "img/qrhook48.png"
    },
    "default_popup": "popup.html",
    "default_title": "QR Hook"
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "QR Hook lets you hook into your browser and access your web accounts seamlessly from your mobile phone.",
  "background": {
    "scripts": [
      "js/jquery-1.9.0.min.js",
      "js/socket.io.min.js",
      "js/background.js"
    ],
    "persistent": true
  },
  "name": "QR Hook Password Manager",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "unlimitedStorage"
  ],
  "icons": {
    "16": "img/qrhook16.png",
    "48": "img/qrhook48.png",
    "128": "img/qrhook128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "http://*/*"
      ],
      "js": [
        "js/jquery-1.9.0.min.js"
      ]
    }
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' http://localhost:3000; object-src 'self'",
  "version": "0.1.9"
}