Youtube Now Playing Description

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

Vad är Youtube Now Playing Description?

Youtube Now Playing Description är en Chrome-tillägg utvecklad av Kevin Leutzinger, och dess huvudfunktion är "Displays now playing song when there's a timestamped tracklist in the description".

Tilläggsskärmbilder

screenshot

Ladda ner Youtube Now Playing Description-förlängningens CRX-fil

Ladda ner Youtube Now Playing Description-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Youtube Now Playing Description Youtube Now Playing Description
ID cclaiidhllljekopicenflhhkdkckkbl
Officiell webbadress https://chromewebstore.google.com/detail/youtube-now-playing-descr/cclaiidhllljekopicenflhhkdkckkbl
Beskrivning Displays now playing song when there's a timestamped tracklist in the description
Filstorlek 693 KB
Antal Installationer 14
Aktuell Version 0.1
Senast Uppdaterad 2018-02-16
Publiceringsdatum 2018-02-15
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Kevin Leutzinger
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}