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
电子邮箱 [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\/*"
    ]
}