musery
Delivers music from VKontakte to Telegram
Wat is musery?
musery is een Chrome-extensie ontwikkeld door http://tsellobenok.dev, en de belangrijkste functie is "Delivers music from VKontakte to Telegram".
Extensie Screenshots
Download het CRX-bestand van de extensie musery
Download musery-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | mopjgakaaelbhcjlleellfcmeponijdf |
Officiële URL | https://chrome.google.com/webstore/detail/musery/mopjgakaaelbhcjlleellfcmeponijdf |
Beschrijving | Delivers music from VKontakte to Telegram |
Bestandsgrootte | 377 KB |
Aantal Installaties | 635 |
Huidige Versie | 2.3.0 |
Laatst Bijgewerkt | 2021-12-03 |
Publicatiedatum | 2020-06-06 |
Beoordeling | 4.23/5 Totaal 31 Beoordelingen |
Ontwikkelaar | http://tsellobenok.dev |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://musery.tsellobenok.dev |
Help Pagina-URL | http://musery.tsellobenok.dev/#faq |
Ondersteunde Talen | 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" } } |