Urban Lyrics

A Chrome extension to view lyrics.

Что такое Urban Lyrics?

Urban Lyrics - это расширение Chrome, разработанное Leon Li, и его основная функция - "A Chrome extension to view lyrics.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Urban Lyrics

Скачайте файлы расширений Urban Lyrics в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
Электронная почта leonli.developer@gmail.com
Тип оплаты 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"
}