CryptoData

CryptoData

Easily and quickly to encrypt / decrypt

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "author": "Oleksandr Popov",
  "version": "3.6",
  "minimum_chrome_version": "45",
  "offline_enabled": true,
  "default_locale": "en",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiBjd1woFHFV067aqWahtWVkUvPjN82fS0n5T94CfNVi83BYxb4dccjKsMQK+lk8/zE7q/0REfLc3QKbd0OH7cLWhBJu0AZdl9c3N3TqUZIV29HFY2ZueriGQMY95ULi22cnxoHtpWGOZSgFSdYhmZvJHyGZ73Wm25jJGkb4br7374uvZxSUYwf9KltrtgR8FdQWVQm01e0BYdwfI41xkGe3qr/08ZGrrGH08pL2EWJRGJaYCzmZ+Iu8JBOBk3NSP3Wlq8Y+vMZokmdFC23fnydYLHWHwJvrmsG715eOi4EBXY9YiosbQH4Ye79T6lQSAC72MuLYYuTA/ZCrafsEWRwIDAQAB",
  "content_scripts": [
    {
      "js": [
        "/content/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "applications": {
    "gecko": {
      "id": "s3crypto@data",
      "strict_min_version": "52.0"
    }
  },
  "browser_action": {
    "default_icon": {
      "16": "skin/s3crypt16.png"
    },
    "default_popup": "content/popup.html"
  },
  "background": {
    "scripts": [
      "background.js",
      "/content/aes_ctr.js",
      "/content/md5.js",
      "/content/base64.js",
      "/content/rc4.js",
      "/content/utils.js",
      "/content/prefs.js",
      "/content/i18n.js",
      "/content/header.js"
    ]
  },
  "options_ui": {
    "page": "content/options.html",
    "chrome_style": false,
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "background",
    "contextMenus",
    "storage",
    "tabs",
    "notifications",
    "clipboardWrite",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "icons": {
    "16": "skin/s3crypt16.png",
    "32": "skin/s3crypt32.png",
    "48": "skin/s3crypt48.png",
    "64": "skin/s3crypt64.png",
    "128": "skin/s3crypt128.png"
  }
}