Youtube Now Playing Description

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

Was ist Youtube Now Playing Description?

Youtube Now Playing Description ist eine Chrome-Erweiterung, die von Kevin Leutzinger entwickelt wurde, und ihr Hauptmerkmal ist "Displays now playing song when there's a timestamped tracklist in the description".

Erweiterungsscreenshots

screenshot

Youtube Now Playing Description-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube Now Playing Description-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Youtube Now Playing Description Youtube Now Playing Description
ID cclaiidhllljekopicenflhhkdkckkbl
Offizielle URL https://chromewebstore.google.com/detail/youtube-now-playing-descr/cclaiidhllljekopicenflhhkdkckkbl
Beschreibung Displays now playing song when there's a timestamped tracklist in the description
Dateigröße 693 KB
Installationsanzahl 14
Aktuelle Version 0.1
Letztes Update 2018-02-16
Veröffentlichungsdatum 2018-02-15
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Kevin Leutzinger
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}