VK mentions

VK mentions

Удобные упоминания в личных сообщениях ВКонтакте. Просто введите символ @ или * и начните набирать имя друга.

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