Genius Lyrics for YouTube Music

Turn YouTube Music into a lyrical genius!

Genius Lyrics for YouTube Music क्या है?

Genius Lyrics for YouTube Music Jakob द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Turn YouTube Music into a lyrical genius!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Genius Lyrics for YouTube Music एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
    ]
}