Genius Lyrics for YouTube Music

Turn YouTube Music into a lyrical genius!

Genius Lyrics for YouTube Music là gì?

Genius Lyrics for YouTube Music là một tiện ích mở rộng Chrome được phát triển bởi Jakob, và tính năng chính của nó là "Turn YouTube Music into a lyrical genius!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Genius Lyrics for YouTube Music

Tải xuống các tệp mở rộng Genius Lyrics for YouTube Music dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Genius Lyrics for YouTube Music Genius Lyrics for YouTube Music
ID gefmkfhdhnlmpeedemlangcjljpfphll
URL Chính Thức https://chromewebstore.google.com/detail/genius-lyrics-for-youtube/gefmkfhdhnlmpeedemlangcjljpfphll
Mô tả Turn YouTube Music into a lyrical genius!
Kích Thước Tệp 24.56 KB
Số Lần Cài Đặt 363
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2023-03-09
Ngày Phát Hành 2023-03-07
Đánh Giá 4.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Jakob
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}