YTSwag: Better YouTube Music (BETA)

Add nice features to YouTube Music! Lyrics, utilities, themes and more!

YTSwag: Better YouTube Music (BETA)란 무엇입니까?

YTSwag: Better YouTube Music (BETA)은(는) FadedCoder에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add nice features to YouTube Music! Lyrics, utilities, themes and more!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

YTSwag: Better YouTube Music (BETA) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension is aimed to make YouTube Music better, by adding features such as lyrics, Discord Rich Presence (planned) and more!

Current Features:
1. Lyrics (From YouTube CC and Genius)
2. Hide/show subtitles (globally)
3. Hide/show queue
4. Double clicking song makes it play
5. Picture-in-Picture (PIP) mode for music videos (can be viewed accross multiple tabs and even windows!)

This is an OSS project. Source code at: https://github.com/FadedCoder/YTSwag

For now, lyrics is fetched in 2 major ways:
1. The YouTube video CC is presented in a lyrics format, or, as a fallback,
2. Lyrics are fetched from Genius.com

Future plans include fetching lyrics from audd.io which maybe paid (since audd.io is a paid API).

NOTE: Given Genius will be accessed by you when the extension is used, you must comply by their Terms of Use (https://genius.com/static/terms) if your use of YTSwag accesses their site.
They say that you should be authorized in writing by Genius except if it's content you legally uploaded there.
You should check out their official terms linked above to read the official document.                    

확장 프로그램 기본 정보

이름 YTSwag: Better YouTube Music (BETA) YTSwag: Better YouTube Music (BETA)
ID paegakmcpjcoihjndpgdbilmjbcjedhd
공식 URL https://chromewebstore.google.com/detail/ytswag-better-youtube-mus/paegakmcpjcoihjndpgdbilmjbcjedhd
설명 Add nice features to YouTube Music! Lyrics, utilities, themes and more!
파일 크기 3.99 MB
설치 횟수 469
현재 버전 0.4.0 beta
최근 업데이트 2020-06-03
출시 날짜 2020-06-02
평점 3.67/5 총 15 개의 평점
개발자 FadedCoder
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/FadedCoder/YTSwag
도움말 페이지 URL https://github.com/FadedCoder/YTSwag
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YTSwag: Better YouTube Music (BETA)",
    "description": "Add nice features to YouTube Music! Lyrics, utilities, themes and more!",
    "version": "0.4.0",
    "version_name": "0.4.0 beta",
    "permissions": [
        "https:\/\/genius.com\/*",
        "https:\/\/video.google.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/music.youtube.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "jquery-3.4.1.min.js",
                "utils\/utils.js",
                "loader\/loader.js",
                "lyrics\/lyrics.js",
                "styles\/style.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "web_accessible_resources": [
        "\/lyrics\/*",
        "\/styles\/*",
        "\/loader\/*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "settings\/settings.html"
}