musery
Delivers music from VKontakte to Telegram
¿Qué es musery?
musery es una extensión de Chrome desarrollada por http://tsellobenok.dev, y su función principal es "Delivers music from VKontakte to Telegram".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión musery
Descarga archivos de extensión musery 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
In the official VKontakte mobile app, it became impossible to listen to music in the background for more than half an hour, and there is no cache in it. But in Telegram, you can listen to music without an Internet connection and without restrictions. Our extension adds button to each track on every page of vk.com. So you can easily send your music files to Telegram. Our site: https://musery.tsellobenok.dev Author: https://tsellobenok.dev
Información Básica de la Extensión
Nombre | |
ID | mopjgakaaelbhcjlleellfcmeponijdf |
URL Oficial | https://chrome.google.com/webstore/detail/musery/mopjgakaaelbhcjlleellfcmeponijdf |
Descripción | Delivers music from VKontakte to Telegram |
Tamaño del Archivo | 377 KB |
Cantidad de Instalaciones | 635 |
Versión Actual | 2.3.0 |
Última Actualización | 2021-12-03 |
Fecha de Publicación | 2020-06-06 |
Calificación | 4.23/5 Total de 31 Calificaciones |
Desarrollador | http://tsellobenok.dev |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://musery.tsellobenok.dev |
URL de la Página de Ayuda | http://musery.tsellobenok.dev/#faq |
Idiomas Soportados | ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "musery", "short_name": "musery", "version": "2.3.0", "description": "Delivers music from VKontakte to Telegram", "homepage_url": "https:\/\/musery.tsellobenok.dev", "icons": { "128": ".\/img\/128x128.png" }, "permissions": [ "activeTab", "tabs", "storage", "notifications" ], "action": { "default_title": "musery", "default_popup": "index.html" }, "web_accessible_resources": [ { "resources": [ "\/img\/*", "\/js\/set-user-id.js" ], "matches": [ "https:\/\/vk.com\/*", "https:\/\/musery.tsellobenok.dev\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/vk.com\/*", "https:\/\/musery.tsellobenok.dev\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/axios.min.js", "js\/hls.js", "js\/jquery-3.4.1.slim.min.js", "js\/content.js" ], "run_at": "document_end" } ], "background": { "service_worker": "\/js\/background.js" } } |