LastPlayer
Extensions for convenient use of the LastPlayer (popup control panel, hotkeys, VK status update)
¿Qué es LastPlayer?
LastPlayer es una extensión de Chrome desarrollada por https://lastplayer.ru, y su función principal es "Extensions for convenient use of the LastPlayer (popup control panel, hotkeys, VK status update)".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión LastPlayer
Descarga archivos de extensión LastPlayer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Раcширение для более удобного использования плеера LastPlayer. Возможности: -обновление статуса ВКонтакте; -быстрое управление плеером через всплывающее окно расширения; -быстрое управление горячими клавишами (в пределах браузера); LastPlayer позволяет прослушивать музыку, загруженную на сервера вконтакте, по плейлистам, полученным с сайта last.fm. Приложение абсолютно бесплатно. Для его использование необходимо только иметь аккаунт на сайте ВКонтакте (vk.com). Для использования плеера не требуется подписка на last.fm и, даже, не обязательно иметь там аккаунт. Если у Вас уже есть аккаунт на этом сайте, то разобраться с использованием плеера будет проще. Последняя версия приложения в настоящий момент дорабатывается с учетом пожеланий пользователей.
Información Básica de la Extensión
Nombre | LastPlayer |
ID | godmhhodlogbflbiijednodnnppejjnh |
URL Oficial | https://chromewebstore.google.com/detail/lastplayer/godmhhodlogbflbiijednodnnppejjnh |
Descripción | Extensions for convenient use of the LastPlayer (popup control panel, hotkeys, VK status update) |
Tamaño del Archivo | 102 KB |
Cantidad de Instalaciones | 261 |
Versión Actual | 1.0.2 |
Última Actualización | 2014-10-27 |
Fecha de Publicación | 2014-10-27 |
Calificación | 4.83/5 Total de 12 Calificaciones |
Desarrollador | https://lastplayer.ru |
Tipo de Pago | free |
Idiomas Soportados | ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LastPlayer", "description": "Extensions for convenient use of the LastPlayer (popup control panel, hotkeys, VK status update)", "version": "1.0.2", "browser_action": { "default_icon": "logo16.png", "default_popup": "popup.html" }, "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" }, "permissions": [ "tabs", "https:\/\/api.vk.com\/", "http:\/\/lastplayer.ru\/" ], "content_scripts": [ { "matches": [ "http:\/\/lastplayer.ru\/player*" ], "js": [ "jquery-1.8.3.min.js", "cs.js" ] }, { "matches": [ "*:\/\/oauth.vk.com\/blank.html" ], "js": [ "jquery-1.8.3.min.js", "oauth-vk-cs.js" ] }, { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-1.8.3.min.js", "utils.js", "hotkeys.js" ] } ], "background": { "scripts": [ "jquery-1.8.3.min.js", "utils.js", "background.js" ], "persistent": false }, "options_page": "options.html" } |