Urban Lyrics

A Chrome extension to view lyrics.

Wat is Urban Lyrics?

Urban Lyrics is een Chrome-extensie ontwikkeld door Leon Li, en de belangrijkste functie is "A Chrome extension to view lyrics.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Urban Lyrics

Download Urban Lyrics-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Urban Lyrics Urban Lyrics
ID akahkofaophahlgdibcfelkfnamedong
Officiële URL https://chromewebstore.google.com/detail/urban-lyrics/akahkofaophahlgdibcfelkfnamedong
Beschrijving A Chrome extension to view lyrics.
Bestandsgrootte 807 KB
Aantal Installaties 392
Huidige Versie 2.2
Laatst Bijgewerkt 2021-01-10
Publicatiedatum 2020-10-19
Beoordeling 4.63/5 Totaal 27 Beoordelingen
Ontwikkelaar Leon Li
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://leonli.cc
Help Pagina-URL https://github.com/leon-li1/Urban-Lyrics
Ondersteunde Talen 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"
}