Security Message Viewer

Security Message Viewer

Allows you to view new messages in vk.com and stay them unread. Do not need your credentials

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Security Message Viewer",
  "short_name": "SMV",
  "version": "1.3.11",
  "description": "__MSG_app_description__",
  "author": "Evgeniy J",
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "*://vk.com/*"
      ],
      "js": [
        "scripts/jquery-3.1.0.min.js",
        "scripts/content-min.js"
      ],
      "css": [
        "styles/styles.css"
      ]
    }
  ],
  "browser_action": {
    "default_title": "",
    "default_icon": "icons/128x128.png",
    "default_popup": "popup.html"
  }
}