Urban Lyrics

A Chrome extension to view lyrics.

Was ist Urban Lyrics?

Urban Lyrics ist eine Chrome-Erweiterung, die von Leon Li entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension to view lyrics.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Urban Lyrics-Erweiterungs-CRX-Datei herunterladen

Laden Sie Urban Lyrics-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Urban Lyrics Urban Lyrics
ID akahkofaophahlgdibcfelkfnamedong
Offizielle URL https://chromewebstore.google.com/detail/urban-lyrics/akahkofaophahlgdibcfelkfnamedong
Beschreibung A Chrome extension to view lyrics.
Dateigröße 807 KB
Installationsanzahl 392
Aktuelle Version 2.2
Letztes Update 2021-01-10
Veröffentlichungsdatum 2020-10-19
Bewertung 4.63/5 Insgesamt 27 Bewertungen
Entwickler Leon Li
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://leonli.cc
Hilfeseite URL https://github.com/leon-li1/Urban-Lyrics
Unterstützte Sprachen 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"
}