Now Playing Pop-up for YouTube™

Shows pop-up with every new song YouTube plays.

Wat is Now Playing Pop-up for YouTube™?

Now Playing Pop-up for YouTube™ is een Chrome-extensie ontwikkeld door Yuya Tanaka (ypresto), en de belangrijkste functie is "Shows pop-up with every new song YouTube plays.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Now Playing Pop-up for YouTube™

Download Now Playing Pop-up for YouTube™-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Now Playing Pop-up for YouTube™ Now Playing Pop-up for YouTube™
ID hkkhehaonffoeecpfdlnmofodcllilnl
Officiële URL https://chrome.google.com/webstore/detail/now-playing-pop-up-for-yo/hkkhehaonffoeecpfdlnmofodcllilnl
Beschrijving Shows pop-up with every new song YouTube plays.
Bestandsgrootte 19.93 KB
Aantal Installaties 203
Huidige Versie 2.1
Laatst Bijgewerkt 2016-10-04
Publicatiedatum 2016-10-04
Beoordeling 2.71/5 Totaal 7 Beoordelingen
Ontwikkelaar Yuya Tanaka (ypresto)
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/ypresto
Ondersteunde Talen 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"
    ]
}