musery
Delivers music from VKontakte to Telegram
什么是musery?
musery是由http://tsellobenok.dev开发的Chrome扩展程序,该扩展的主要功能是“Delivers music from VKontakte to Telegram”。
扩展截图
下载musery扩展crx文件
下载musery扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | mopjgakaaelbhcjlleellfcmeponijdf |
官方URL | https://chrome.google.com/webstore/detail/musery/mopjgakaaelbhcjlleellfcmeponijdf |
简介 | Delivers music from VKontakte to Telegram |
文件大小 | 377 KB |
安装次数 | 635 |
当前版本 | 2.3.0 |
更新时间 | 2021-12-03 |
上架时间 | 2020-06-06 |
评分 | 4.23/5 共31次评分 |
开发者 | http://tsellobenok.dev |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://musery.tsellobenok.dev |
帮助页面URL | http://musery.tsellobenok.dev/#faq |
支持的语言 | 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" } } |