YouTube Genius

This extension shows the Genius.com lyrics and annotations for a YouTube video

YouTube Genius क्या है?

YouTube Genius barker.tommy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension shows the Genius.com lyrics and annotations for a YouTube video"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        When viewing a YouTube music video, YouTube Genius will inject a clickable "Genius" button next to the voting buttons.  When the Genius button is clicked, the user's browser will be populated with a new tab that will have the genius.com lyric and annotation information. 

Alternatively, the user can select to populate a new window with the genius.com lyric and annotation content via the settings menu.  The new window will appear side by side with the YouTube video (split screen) for easy lyric viewing while still enjoying the music video!  To access the settings menu, simply just click the icon for the browser action (next to the URL bar).   

**NEW Lyrics can be displayed on the YouTube page now! The lyric content will replace the comment section and a popup will be used for annotation text display                    

एक्सटेंशन की मूल जानकारी

नाम YouTube Genius YouTube Genius
ID jkinhigneocaflebhiajejdjfmcijgcc
आधिकारिक URL https://chrome.google.com/webstore/detail/youtube-genius/jkinhigneocaflebhiajejdjfmcijgcc
विवरण This extension shows the Genius.com lyrics and annotations for a YouTube video
फ़ाइल का आकार 59.93 KB
स्थापना संख्या 925
वर्तमान संस्करण 3.0.1
अंतिम अपडेट 2017-03-29
प्रकाशन तिथि 2017-03-29
रेटिंग 3.00/5 कुल 20 रेटिंग्स
डेवलपर barker.tommy
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Genius",
    "description": "This extension shows the Genius.com lyrics and annotations for a YouTube video",
    "version": "3.0.1",
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "js\/libs\/jquery-2.1.4.min.js",
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "webNavigation",
        "https:\/\/ajax.googleapis.com\/",
        "*:\/\/youtube.com\/*",
        "*:\/\/www.youtube.com\/*",
        "*:\/\/www.genius.com\/*",
        "*:\/\/genius.com\/*",
        "*:\/\/api.genius.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/youtube.com\/*",
                "http:\/\/www.youtube.com\/*",
                "https:\/\/youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/libs\/jquery-2.1.4.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/*"
    ]
}