Youtube Now Playing Description

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

Youtube Now Playing Description क्या है?

Youtube Now Playing Description Kevin Leutzinger द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays now playing song when there's a timestamped tracklist in the description"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Youtube Now Playing Description एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Youtube Now Playing Description Youtube Now Playing Description
ID cclaiidhllljekopicenflhhkdkckkbl
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-now-playing-descr/cclaiidhllljekopicenflhhkdkckkbl
विवरण Displays now playing song when there's a timestamped tracklist in the description
फ़ाइल का आकार 693 KB
स्थापना संख्या 14
वर्तमान संस्करण 0.1
अंतिम अपडेट 2018-02-16
प्रकाशन तिथि 2018-02-15
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Kevin Leutzinger
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
        }
    ]
}