musery

Delivers music from VKontakte to Telegram

musery란 무엇입니까?

musery은(는) http://tsellobenok.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Delivers music from VKontakte to Telegram"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

musery 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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"
    }
}