Urban Lyrics

A Chrome extension to view lyrics.

Urban Lyrics क्या है?

Urban Lyrics Leon Li द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension to view lyrics."।

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        An extension that provides its user with lyrics to a song with the click of a button. It also has integrated search boxes for word definitions by Urban Dictionary and also for custom song lookups. At the end of the song lyrics is also a Genius link for the current song displayed.                    

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

नाम Urban Lyrics Urban Lyrics
ID akahkofaophahlgdibcfelkfnamedong
आधिकारिक URL https://chromewebstore.google.com/detail/urban-lyrics/akahkofaophahlgdibcfelkfnamedong
विवरण A Chrome extension to view lyrics.
फ़ाइल का आकार 807 KB
स्थापना संख्या 392
वर्तमान संस्करण 2.2
अंतिम अपडेट 2021-01-10
प्रकाशन तिथि 2020-10-19
रेटिंग 4.63/5 कुल 27 रेटिंग्स
डेवलपर Leon Li
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://leonli.cc
सहायता पृष्ठ URL https://github.com/leon-li1/Urban-Lyrics
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Urban Lyrics",
    "version": "2.2",
    "manifest_version": 2,
    "description": "A Chrome extension to view lyrics.",
    "icons": {
        "16": "icons\/UrbanLyrics-16.png",
        "48": "icons\/UrbanLyrics-48.png",
        "128": "icons\/UrbanLyrics-128.png"
    },
    "browser_action": {
        "default_title": "Urban Lyrics",
        "default_popup": "popup.html"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "https:\/\/fonts.googleapis.com\/*"
    ],
    "content_security_policy": "default-src 'self'; connect-src *; font-src *; style-src-elem * 'unsafe-inline'; script-src-elem * ; style-src 'unsafe-inline'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "incognito": "not_allowed"
}