musery
Delivers music from VKontakte to Telegram
O que é musery?
musery é uma extensão do Chrome desenvolvida por http://tsellobenok.dev, e sua principal característica é "Delivers music from VKontakte to Telegram".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão musery
Baixe arquivos de extensão musery no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | mopjgakaaelbhcjlleellfcmeponijdf |
URL Oficial | https://chrome.google.com/webstore/detail/musery/mopjgakaaelbhcjlleellfcmeponijdf |
Descrição | Delivers music from VKontakte to Telegram |
Tamanho do Arquivo | 377 KB |
Contagem de Instalações | 635 |
Versão Atual | 2.3.0 |
Última Atualização | 2021-12-03 |
Data de Publicação | 2020-06-06 |
Classificação | 4.23/5 Total de 31 Avaliações |
Desenvolvedor | http://tsellobenok.dev |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://musery.tsellobenok.dev |
URL da Página de Ajuda | http://musery.tsellobenok.dev/#faq |
Idiomas Suportados | 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" } } |