Stop Peeking!

Stop Peeking!

A tool for sending and receiving encrypted emails.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A tool for sending and receiving encrypted emails.",
  "version": "0.0.4",
  "name": "Stop Peeking!",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "gmail.bundle.js"
      ]
    },
    {
      "matches": [
        "https://mail.yahoo.com/*"
      ],
      "js": [
        "yahoo.bundle.js"
      ]
    },
    {
      "matches": [
        "https://outlook.live.com/*"
      ],
      "js": [
        "outlook.bundle.js"
      ]
    }
  ],
  "icons": {
    "128": "icon-128.png"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}