YouTube Lyrics

Get lyrics for any music video on YouTube.

YouTube Lyrics là gì?

YouTube Lyrics là một tiện ích mở rộng Chrome được phát triển bởi Lucas Araújo, và tính năng chính của nó là "Get lyrics for any music video on YouTube.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng YouTube Lyrics 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

                        Tired of looking for lyrics on the comment section? Get synced lyrics right next to the video player on YouTube.

⚠️ You must be logged into Spotify for the extension to work;
⚠️ After installing and making sure you are logged into Spotify, you must refresh any YouTube video page before using the extension.

🧰 Features:
      • Fixed button on the top right corner of the page to bring up the lyrics overlay;
      • Hide the overlay at any point by clicking the close button (X), the lyrics will stay in sync if you bring them up again;
      • Resize the overlay from handle at the bottom right corner;
      • Move the overlay by dragging its header;
      • Advance or delay the lyrics if they are out of sync by setting their offset;
      • Enable or disable the auto-scrolling feature with a single click;
      • Click on a line to jump to it on the video;
      • Search for the correct track in a matter of seconds if the extension chose the wrong one;
      • Lyrics and offset for a video are saved and persist refreshes.

💭 If you have any suggestions on how to improve the extension, leave a review.                    

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

Tên YouTube Lyrics YouTube Lyrics
ID kpmiacnpajcnngpppplijmakhjjgeimi
URL Chính Thức https://chromewebstore.google.com/detail/youtube-lyrics/kpmiacnpajcnngpppplijmakhjjgeimi
Mô tả Get lyrics for any music video on YouTube.
Kích Thước Tệp 163 KB
Số Lần Cài Đặt 629
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2023-03-13
Ngày Phát Hành 2023-02-27
Đánh Giá 4.69/5 Tổng số 13 Đánh Giá
Nhà Phát Triển Lucas Araújo
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Lyrics",
    "version": "0.3.0",
    "description": "Get lyrics for any music video on YouTube.",
    "manifest_version": 3,
    "minimum_chrome_version": "93",
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "global.css",
                "content.css"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*.youtube.com\/",
        "https:\/\/open.spotify.com\/get_access_token",
        "https:\/\/spclient.wg.spotify.com\/",
        "https:\/\/api-partner.spotify.com\/"
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "resources": [
                "fonts\/*"
            ]
        }
    ]
}