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
官方網址 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
電子郵箱 [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\/*"
    ]
}