Youtube Now Playing Description

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

Qu'est-ce que Youtube Now Playing Description ?

Youtube Now Playing Description est une extension Chrome développée par Kevin Leutzinger, et sa fonction principale est "Displays now playing song when there's a timestamped tracklist in the description".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Youtube Now Playing Description

Téléchargez les fichiers d'extension Youtube Now Playing Description au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Youtube Now Playing Description Youtube Now Playing Description
ID cclaiidhllljekopicenflhhkdkckkbl
URL Officiel https://chromewebstore.google.com/detail/youtube-now-playing-descr/cclaiidhllljekopicenflhhkdkckkbl
Description Displays now playing song when there's a timestamped tracklist in the description
Taille du Fichier 693 KB
Nombre d'Installations 14
Version Actuelle 0.1
Dernière Mise à Jour 2018-02-16
Date de Publication 2018-02-15
Évaluation 5.00/5 Total 2 Évaluations
Développeur Kevin Leutzinger
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}