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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}