Youtube Now Playing Description

Displays now playing song when there's a timestamped tracklist in the description

Что такое Youtube Now Playing Description?

Youtube Now Playing Description - это расширение Chrome, разработанное Kevin Leutzinger, и его основная функция - "Displays now playing song when there's a timestamped tracklist in the description".

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

screenshot

Скачать файл CRX расширения Youtube Now Playing Description

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

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

                        Finds the times of tracks in the description and shows which song is currently playing. Also allows skipping forward and back. Very useful for soundtracks, full albums, and other compilations.                    

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

Название Youtube Now Playing Description Youtube Now Playing Description
ID cclaiidhllljekopicenflhhkdkckkbl
Официальный URL https://chromewebstore.google.com/detail/youtube-now-playing-descr/cclaiidhllljekopicenflhhkdkckkbl
Описание Displays now playing song when there's a timestamped tracklist in the description
Размер файла 693 KB
Количество установок 14
Текущая Версия 0.1
Последнее Обновление 2018-02-16
Дата публикации 2018-02-15
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Kevin Leutzinger
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Now Playing Description",
    "description": "Displays now playing song when there's a timestamped tracklist in the description",
    "version": "0.1",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "\/icons\/icon.png"
    },
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "main.js"
            ],
            "run_at": "document_start"
        }
    ]
}