Now Playing Pop-up for YouTube™

Shows pop-up with every new song YouTube plays.

Hvad er Now Playing Pop-up for YouTube™?

Now Playing Pop-up for YouTube™ er en Chrome-udvidelse udviklet af Yuya Tanaka (ypresto), og dens hovedfunktion er "Shows pop-up with every new song YouTube plays.".

Udvidelsesskærmbilleder

screenshot

Download Now Playing Pop-up for YouTube™-udvidelses-CRX-fil

Download Now Playing Pop-up for YouTube™-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Now Playing Pop-up for YouTube™ Now Playing Pop-up for YouTube™
ID hkkhehaonffoeecpfdlnmofodcllilnl
Officiel URL https://chrome.google.com/webstore/detail/now-playing-pop-up-for-yo/hkkhehaonffoeecpfdlnmofodcllilnl
Beskrivelse Shows pop-up with every new song YouTube plays.
Filstørrelse 19.93 KB
Antal Installationer 203
Nuværende Version 2.1
Senest Opdateret 2016-10-04
Udgivelsesdato 2016-10-04
Bedømmelse 2.71/5 Samlet 7 Bedømmelser
Udvikler Yuya Tanaka (ypresto)
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/ypresto
Understøttede Sprog 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"
    ]
}