YouTube Genius

Get lyrics provided by Genius on YouTube videos

Что такое YouTube Genius?

YouTube Genius - это расширение Chrome, разработанное https://youtube-genius.com, и его основная функция - "Get lyrics provided by Genius on YouTube videos".

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

screenshot
screenshot

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

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

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

                        This extension allows you to view and listen YouTube music videos alongside the lyrics. Lyrics are placed inside the YouTube page itself so you don't need to open a separate tab in order to read the lyrics of your favorite songs.                    

Основная информация о расширении

Название YouTube Genius YouTube Genius
ID lmnandahjhfgfimknapgffcjojmnihjn
Официальный URL https://chromewebstore.google.com/detail/youtube-genius/lmnandahjhfgfimknapgffcjojmnihjn
Описание Get lyrics provided by Genius on YouTube videos
Размер файла 32.74 KB
Количество установок 890
Текущая Версия 1.3.5
Последнее Обновление 2022-08-27
Дата публикации 2019-02-14
Рейтинг 3.89/5 Всего 19 оценок
Разработчик https://youtube-genius.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Genius",
    "version": "1.3.5",
    "description": "Get lyrics provided by Genius on YouTube videos",
    "icons": {
        "16": "Icon16.png",
        "48": "Icon48.png",
        "128": "Icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "app.js",
                "main.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "use_dynamic_url": true
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
    },
    "action": {
        "default_icon": {
            "16": "Icon16.png",
            "48": "Icon48.png",
            "128": "Icon128.png"
        }
    }
}