Genius Lyrics for YouTube Music

Turn YouTube Music into a lyrical genius!

Genius Lyrics for YouTube Musicとは何ですか?

Genius Lyrics for YouTube MusicはJakobによって開発されたChromeの拡張機能で、その主な機能は「Turn YouTube Music into a lyrical genius!」です。

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

screenshot
screenshot

Genius Lyrics for YouTube Music拡張機能のCRXファイルをダウンロード

Genius Lyrics for YouTube Music拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Are you tired of singing the wrong lyrics to your favorite songs on YouTube Music? Fear not! With this extension, you can say goodbye to those embarrassing moments when you've been belting out the wrong lyrics at the top of your lungs.

Say hello to accurate lyrics, complete with their meanings, from the one and only Genius. No more confusion or frustration, just pure musical bliss.                    

拡張機能の基本情報

名前 Genius Lyrics for YouTube Music Genius Lyrics for YouTube Music
ID gefmkfhdhnlmpeedemlangcjljpfphll
公式URL https://chromewebstore.google.com/detail/genius-lyrics-for-youtube/gefmkfhdhnlmpeedemlangcjljpfphll
説明 Turn YouTube Music into a lyrical genius!
ファイルサイズ 24.56 KB
インストール数 363
現在のバージョン 1.0.1
最終更新日 2023-03-09
公開日 2023-03-07
評価 4.00/5 合計 5 レビュー
開発者 Jakob
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Genius Lyrics for YouTube Music",
    "version": "1.0.1",
    "description": "Turn YouTube Music into a lyrical genius!",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/music.youtube.com\/*"
            ],
            "js": [
                "music_content.js"
            ],
            "css": [
                "music_styles.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/genius.com\/*"
            ],
            "js": [
                "genius_content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "genius",
                "enabled": true,
                "path": "genius_rules.json"
            }
        ]
    },
    "permissions": [
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        "*:\/\/*.genius.com\/*",
        "*:\/\/*.music.youtube.com\/*"
    ]
}