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”。
擴展截圖
下載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 |
ID | cclaiidhllljekopicenflhhkdkckkbl |
官方網址 | 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" } ] } |