musery

Delivers music from VKontakte to Telegram

Cos'è musery?

musery è un'estensione di Chrome sviluppata da http://tsellobenok.dev, e la sua funzione principale è "Delivers music from VKontakte to Telegram".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione musery

Scarica i file di estensione musery in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome musery musery
ID mopjgakaaelbhcjlleellfcmeponijdf
URL Ufficiale https://chrome.google.com/webstore/detail/musery/mopjgakaaelbhcjlleellfcmeponijdf
Descrizione Delivers music from VKontakte to Telegram
Dimensione del File 377 KB
Conteggio Installazioni 635
Versione Corrente 2.3.0
Ultimo Aggiornamento 2021-12-03
Data di Pubblicazione 2020-06-06
Valutazione 4.23/5 Totale 31 Valutazioni
Sviluppatore http://tsellobenok.dev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://musery.tsellobenok.dev
URL della Pagina di Aiuto http://musery.tsellobenok.dev/#faq
Lingue Supportate 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"
    }
}