Encrypt-It

Encrypt-It

Encryption in the browser. Encrypt and decrypt any text with a password for secure communication.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Encrypt-It",
  "author": "kodaxx",
  "description": "Encryption in the browser. Encrypt and decrypt any text with a password for secure communication.",
  "version": "1.1",
  "icons": {
    "16": "data/encryptit16.png",
    "48": "data/encryptit48.png",
    "128": "data/encryptit128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
  "permissions": [
    "activeTab",
    "<all_urls>",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "data/js/libs/jquery.min.js",
        "data/js/libs/aes.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "data/*"
  ],
  "browser_action": {
    "default_icon": {
      "19": "data/encryptit19.png",
      "38": "data/encryptit38.png"
    },
    "default_title": "EncryptIt",
    "default_popup": "data/index.html"
  }
}