YTMusic random album

Picks a random album from your YouTube Music library and plays it.

YTMusic random album란 무엇입니까?

YTMusic random album은(는) Lubomír Moric에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Picks a random album from your YouTube Music library and plays it."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YTMusic random album 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension enhances YouTube Music with a feature of random album play. This is especially helpful for classic music listeners, when whole album needs to be played in whole, instead of random selection of tracks from your library or playlist.

Extension is operated by clicking its icon, no menus or other buttons are present.

Simply click the extension icon and YouTube Music library tab will open for you, in case it is not already present (non-existing YouTube Music library tab is signalised by black'n'white icon, color icon signalises, that proper tab is present in browser).
Than it randomly picks album from your library and plays it. You need to keep the YouTube music library tab present in browser to play another random album or new tab will be opened again.

Also first play takes about 10s, until all your albums are loaded, as YouTube Music uses lazy loading of your library and extension needs to have list of all your albums. Any following random play is already instant.                    

확장 프로그램 기본 정보

이름 YTMusic random album YTMusic random album
ID dncgjknchhlpnhebhabokhoippnmiloi
공식 URL https://chromewebstore.google.com/detail/ytmusic-random-album/dncgjknchhlpnhebhabokhoippnmiloi
설명 Picks a random album from your YouTube Music library and plays it.
파일 크기 45.76 KB
설치 횟수 934
현재 버전 0.6.6
최근 업데이트 2019-10-08
출시 날짜 2019-10-08
평점 3.00/5 총 4 개의 평점
개발자 Lubomír Moric
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YTMusic random album",
    "version": "0.6.6",
    "description": "Picks a random album from your YouTube Music library and plays it.",
    "browser_action": [],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/music.youtube.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/jquery.min.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "notifications",
        "storage",
        "https:\/\/music.youtube.com\/*",
        "https:\/\/lh3.googleusercontent.com\/*"
    ],
    "icons": {
        "128": "icons\/icon128x128.png"
    }
}