Now Playing Pop-up for YouTube™

Shows pop-up with every new song YouTube plays.

Co to jest Now Playing Pop-up for YouTube™?

Now Playing Pop-up for YouTube™ to rozszerzenie Chrome opracowane przez Yuya Tanaka (ypresto), a jego główną funkcją jest „Shows pop-up with every new song YouTube plays.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Now Playing Pop-up for YouTube™

Pobierz pliki rozszerzeń Now Playing Pop-up for YouTube™ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Now Playing Pop-up for YouTube™ Now Playing Pop-up for YouTube™
ID hkkhehaonffoeecpfdlnmofodcllilnl
Oficjalny URL https://chrome.google.com/webstore/detail/now-playing-pop-up-for-yo/hkkhehaonffoeecpfdlnmofodcllilnl
Opis Shows pop-up with every new song YouTube plays.
Rozmiar pliku 19.93 KB
Liczba instalacji 203
Aktualna Wersja 2.1
Ostatnia Aktualizacja 2016-10-04
Data Publikacji 2016-10-04
Ocena 2.71/5 Łącznie 7 Oceny
Deweloper Yuya Tanaka (ypresto)
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/ypresto
Obsługiwane Języki 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"
    ]
}