musery

Delivers music from VKontakte to Telegram

museryとは何ですか?

museryはhttp://tsellobenok.devによって開発されたChromeの拡張機能で、その主な機能は「Delivers music from VKontakte to Telegram」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

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                    

拡張機能の基本情報

名前 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
Eメール [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"
    }
}