VK chatfree

VK chatfree

Excludes chats from VK unread messages counter.

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 chatfree",
  "version": "2.0",
  "content_scripts": [
    {
      "matches": [
        "*://vk.com/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "js/inject.js"
  ],
  "externally_connectable": {
    "matches": [
      "*://vk.com/*"
    ]
  },
  "permissions": [
    "*://*.vk.com/*",
    "tabs"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "js/event.js"
    ]
  }
}