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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kevin Leutzinger และคุณลักษณะหลักของมันคือ "Displays now playing song when there's a timestamped tracklist in the description"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Now Playing Description
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" } ] } |