Hidden Message

Hidden Message

Handy tool to have hidden conversation with your friend, without other knowing the message if they don't have the secret key.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hidden Message",
  "description": "Handy tool to have hidden conversation with your friend, without other knowing the message if they don't have the secret key.",
  "version": "0.0.2",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "eye_16.png",
    "48": "eye_48.png",
    "128": "eye_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-2.1.4.min.js",
        "aes.js",
        "contentscript.js"
      ],
      "run_at": "document_end"
    }
  ]
}