musery

Delivers music from VKontakte to Telegram

Что такое musery?

musery - это расширение Chrome, разработанное http://tsellobenok.dev, и его основная функция - "Delivers music from VKontakte to Telegram".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения musery

Скачайте файлы расширений 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                    

Основная информация о расширении

Название musery musery
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"
    }
}