PeerPrivacy

PeerPrivacy

Protect private sites from your prankster friends with a simple password

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PeerPrivacy",
  "version": "1.0",
  "description": "Protect private sites from your prankster friends with a simple password",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "icons": {
    "16": "shield.png",
    "32": "shield.png",
    "64": "shield.png",
    "128": "shield.png",
    "256": "shield.png",
    "512": "shield.png"
  },
  "browser_action": {
    "default_popup": "enterPass.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "block.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ]
}