VK dialogs

VK dialogs

Удобствa приложения: • Переписывайся, отправляй стикеры и смайлики. Достаточно открыть приложение горячей клавишей Alt + V,…

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 dialogs",
  "version": "1.5.4",
  "icons": {
    "16": "icons/16W.png",
    "32": "icons/32W.png",
    "48": "icons/48W.png",
    "128": "icons/128W.png"
  },
  "permissions": [
    "https://*.vk.com/*",
    "tabs",
    "storage",
    "notifications"
  ],
  "background": {
    "scripts": [
      "js/punycode.js",
      "js/longpollserver.js",
      "js/helpers.js",
      "js/storage.js",
      "js/model.js",
      "js/controller.js",
      "js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/16Wdef.png",
    "default_title": "Alt+V",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+V",
        "mac": "Alt+D",
        "chromeos": "Alt+V",
        "linux": "Alt+V"
      },
      "description": "Open popup"
    }
  }
}