Youtube Now Playing Description

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

Apa itu Youtube Now Playing Description?

Youtube Now Playing Description adalah ekstensi Chrome yang dikembangkan oleh Kevin Leutzinger, dan fitur utamanya adalah "Displays now playing song when there's a timestamped tracklist in the description".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Youtube Now Playing Description

Unduh file ekstensi Youtube Now Playing Description dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Youtube Now Playing Description Youtube Now Playing Description
ID cclaiidhllljekopicenflhhkdkckkbl
URL Resmi https://chromewebstore.google.com/detail/youtube-now-playing-descr/cclaiidhllljekopicenflhhkdkckkbl
Deskripsi Displays now playing song when there's a timestamped tracklist in the description
Ukuran File 693 KB
Jumlah Instalasi 14
Versi Saat Ini 0.1
Terakhir Diperbarui 2018-02-16
Tanggal Publikasi 2018-02-15
Penilaian 5.00/5 Total 2 Penilaian
Pengembang Kevin Leutzinger
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}