Urban Lyrics

A Chrome extension to view lyrics.

Co je Urban Lyrics?

Urban Lyrics je rozšíření Chrome vyvinuté Leon Li, a jeho hlavní funkcí je „A Chrome extension to view lyrics.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Urban Lyrics

Stáhněte si soubory rozšíření Urban Lyrics ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Urban Lyrics Urban Lyrics
ID akahkofaophahlgdibcfelkfnamedong
Oficiální URL https://chromewebstore.google.com/detail/urban-lyrics/akahkofaophahlgdibcfelkfnamedong
Popis A Chrome extension to view lyrics.
Velikost souboru 807 KB
Počet instalací 392
Aktuální Verze 2.2
Poslední Aktualizace 2021-01-10
Datum Vydání 2020-10-19
Hodnocení 4.63/5 Celkem 27 Hodnocení
Vývojář Leon Li
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://leonli.cc
URL Stránky Nápovědy https://github.com/leon-li1/Urban-Lyrics
Podporované Jazyky 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"
}