Youtube Now Playing Description

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

Co je Youtube Now Playing Description?

Youtube Now Playing Description je rozšíření Chrome vyvinuté Kevin Leutzinger, a jeho hlavní funkcí je „Displays now playing song when there's a timestamped tracklist in the description“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Youtube Now Playing Description

Stáhněte si soubory rozšíření Youtube Now Playing Description ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Youtube Now Playing Description Youtube Now Playing Description
ID cclaiidhllljekopicenflhhkdkckkbl
Oficiální URL https://chromewebstore.google.com/detail/youtube-now-playing-descr/cclaiidhllljekopicenflhhkdkckkbl
Popis Displays now playing song when there's a timestamped tracklist in the description
Velikost souboru 693 KB
Počet instalací 14
Aktuální Verze 0.1
Poslední Aktualizace 2018-02-16
Datum Vydání 2018-02-15
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Kevin Leutzinger
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}