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开发的Chrome扩展程序,该扩展的主要功能是“Displays now playing song when there's a timestamped tracklist in the description”。

扩展截图

screenshot

下载Youtube Now Playing Description扩展crx文件

下载Youtube Now Playing Description扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        }
    ]
}