YouTube Genius

Get lyrics provided by Genius on YouTube videos

YouTube Genius là gì?

YouTube Genius là một tiện ích mở rộng Chrome được phát triển bởi https://youtube-genius.com, và tính năng chính của nó là "Get lyrics provided by Genius on YouTube videos".

Ả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 YouTube Genius

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

                        This extension allows you to view and listen YouTube music videos alongside the lyrics. Lyrics are placed inside the YouTube page itself so you don't need to open a separate tab in order to read the lyrics of your favorite songs.                    

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

Tên YouTube Genius YouTube Genius
ID lmnandahjhfgfimknapgffcjojmnihjn
URL Chính Thức https://chromewebstore.google.com/detail/youtube-genius/lmnandahjhfgfimknapgffcjojmnihjn
Mô tả Get lyrics provided by Genius on YouTube videos
Kích Thước Tệp 32.74 KB
Số Lần Cài Đặt 890
Phiên Bản Hiện Tại 1.3.5
Cập Nhật Lần Cuối 2022-08-27
Ngày Phát Hành 2019-02-14
Đánh Giá 3.89/5 Tổng số 19 Đánh Giá
Nhà Phát Triển https://youtube-genius.com
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",
    "manifest_version": 3,
    "name": "YouTube Genius",
    "version": "1.3.5",
    "description": "Get lyrics provided by Genius on YouTube videos",
    "icons": {
        "16": "Icon16.png",
        "48": "Icon48.png",
        "128": "Icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "app.js",
                "main.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "use_dynamic_url": true
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
    },
    "action": {
        "default_icon": {
            "16": "Icon16.png",
            "48": "Icon48.png",
            "128": "Icon128.png"
        }
    }
}