SVkMessage

SVkMessage

The extension allows to encrypt vk messages using asymmetrical algorithms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SVkMessage",
  "description": "The extension allows to encrypt vk messages using asymmetrical algorithms.",
  "version": "0.2",
  "icons": {
    "16": "images/icons/main-icon16.png",
    "48": "images/icons/main-icon48.png",
    "128": "images/icons/main-icon128.png",
    "256": "images/icons/main-icon256.png"
  },
  "background": {
    "scripts": [
      "decimal.js",
      "keystorage.js",
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": "images/security-medium.png",
    "default_popup": "popup.html",
    "default_title": "SVkMessage"
  },
  "content_scripts": [
    {
      "matches": [
        "http://vk.com/*",
        "https://vk.com/*"
      ],
      "css": [
        "svkm.css"
      ],
      "js": [
        "jquery-2.1.1.min.js",
        "decimal.js",
        "aes.js",
        "sha3.js",
        "common.js",
        "random.js",
        "elgamal.js",
        "libVkInject.js",
        "secureInjection.js",
        "frame.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "frame.html",
    "svkm.css",
    "images/button_bgf.png"
  ],
  "permissions": [
    "tabs",
    "storage"
  ]
}