VK Minimalist

VK Minimalist

Transform VK into simple messenger.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "VK Minimalist",
  "description": "Transform VK into simple messenger.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "matches": [
        "http://vk.com/*",
        "https://vk.com/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "http://vk.com/*"
  ]
}