YouTube Genius

Get lyrics provided by Genius on YouTube videos

YouTube Genius क्या है?

YouTube Genius https://youtube-genius.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get lyrics provided by Genius on YouTube videos"।

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

screenshot
screenshot

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

crx प्रारूप में YouTube Genius एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    }
}