VK Музыкальный плеер

VK Музыкальный плеер

Управляй музыкой из VK через удобный плеер или горячие клавиши, работающие даже при свернутом браузере!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "VK Музыкальный плеер",
    "default_popup": "popup_full.html"
  },
  "options_page": "settings.html",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "icons": {
    "16": "ico16p.png",
    "48": "logo48.png"
  },
  "permissions": [
    "tabs",
    "notifications",
    "storage",
    "*://vk.com/*",
    "*://*.vk.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.vk.com/*",
        "https://*.vk.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "logo48.png",
    "js/inject.js",
    "empty_album.jpg"
  ],
  "name": "VK Музыкальный плеер",
  "description": "Управляй музыкой из VK через удобный плеер или горячие клавиши, работающие даже при свернутом браузере!",
  "version": "2.4.1",
  "commands": {
    "play": {
      "description": "Плей/Пауза",
      "global": true,
      "suggested_key": {
        "default": "Ctrl+Shift+8",
        "windows": "Ctrl+Shift+8",
        "mac": "Command+Shift+8",
        "chromeos": "Alt+Shift+8",
        "linux": "Alt+Shift+8"
      }
    },
    "next": {
      "description": "Следующая аудиозапись",
      "global": true,
      "suggested_key": {
        "default": "Ctrl+Shift+0",
        "windows": "Ctrl+Shift+0",
        "mac": "Command+Shift+0",
        "chromeos": "Alt+Shift+0",
        "linux": "Alt+Shift+0"
      }
    },
    "prev": {
      "description": "Предыдущая аудиозапись",
      "global": true
    },
    "info": {
      "description": "Информация об аудизаписи",
      "global": true,
      "suggested_key": {
        "default": "Ctrl+Shift+7",
        "windows": "Ctrl+Shift+7",
        "mac": "Command+Shift+7",
        "chromeos": "Alt+Shift+7",
        "linux": "Alt+Shift+7"
      }
    },
    "add": {
      "description": "Добавить аудиозапись",
      "global": true
    },
    "repeat": {
      "description": "Повторять аудиозапись",
      "global": true
    },
    "shuffle": {
      "description": "Случайный порядок",
      "global": true
    },
    "mute": {
      "description": "Приглушить все вкладки",
      "global": true
    },
    "progress_up": {
      "description": "Перемотать вперед",
      "global": true
    },
    "progress_down": {
      "description": "Перемотать назад",
      "global": true
    },
    "volume_up": {
      "description": "Громкость+",
      "global": true
    },
    "volume_down": {
      "description": "Громкость-",
      "global": true
    },
    "open": {
      "description": "Открыть вкладку с музыкой VK",
      "global": true
    },
    "logout": {
      "description": "Выйти из вк",
      "global": true
    },
    "up_current_audio": {
      "description": "Поднять текущую песню вверх в плейлисте",
      "global": true
    }
  }
}