YouTube Genius

Get lyrics provided by Genius on YouTube videos

YouTube Genius란 무엇입니까?

YouTube Genius은(는) https://youtube-genius.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get lyrics provided by Genius on YouTube videos"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouTube Genius 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 YouTube Genius YouTube Genius
ID lmnandahjhfgfimknapgffcjojmnihjn
공식 URL https://chromewebstore.google.com/detail/youtube-genius/lmnandahjhfgfimknapgffcjojmnihjn
설명 Get lyrics provided by Genius on YouTube videos
파일 크기 32.74 KB
설치 횟수 890
현재 버전 1.3.5
최근 업데이트 2022-08-27
출시 날짜 2019-02-14
평점 3.89/5 총 19 개의 평점
개발자 https://youtube-genius.com
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
        }
    }
}