Now Playing Pop-up for YouTube™

Shows pop-up with every new song YouTube plays.

Что такое Now Playing Pop-up for YouTube™?

Now Playing Pop-up for YouTube™ - это расширение Chrome, разработанное Yuya Tanaka (ypresto), и его основная функция - "Shows pop-up with every new song YouTube plays.".

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

screenshot

Скачать файл CRX расширения Now Playing Pop-up for YouTube™

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

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

                        Notifies YouTube video title at every playback, like some music players (ex. Winamp or iTunes).                    

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

Название Now Playing Pop-up for YouTube™ Now Playing Pop-up for YouTube™
ID hkkhehaonffoeecpfdlnmofodcllilnl
Официальный URL https://chrome.google.com/webstore/detail/now-playing-pop-up-for-yo/hkkhehaonffoeecpfdlnmofodcllilnl
Описание Shows pop-up with every new song YouTube plays.
Размер файла 19.93 KB
Количество установок 203
Текущая Версия 2.1
Последнее Обновление 2016-10-04
Дата публикации 2016-10-04
Рейтинг 2.71/5 Всего 7 оценок
Разработчик Yuya Tanaka (ypresto)
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/ypresto
Поддерживаемые языки en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Now Playing Pop-up for YouTube\u2122",
    "version": "2.1",
    "description": "Shows pop-up with every new song YouTube plays.",
    "author": "Yuya Tanaka",
    "default_locale": "en",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/watch?*",
                "https:\/\/www.youtube.com\/watch?*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "notifications"
    ]
}