TracklistTube
Display Tracklists for YouTube DJ Videos
TracklistTubeคืออะไร?
TracklistTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Martin Kwan และคุณลักษณะหลักของมันคือ "Display Tracklists for YouTube DJ Videos"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TracklistTube
ดาวน์โหลดไฟล์ส่วนขยาย TracklistTube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Find Tracklists and Timestamps for your favorite, popular YouTube DJ Mixes ✔ Display current song playing in the video, in real time ✔ Ability to navigate to individual songs in DJ mix ✔ Add songs to your Spotify library ✔ Create a new Spotify playlist with tracks from the DJ set ✔ Dark Mode User Interface
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | TracklistTube |
ID | mgpblmigodgdkobnahpoflfgceabgfgb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tracklisttube/mgpblmigodgdkobnahpoflfgceabgfgb |
คำอธิบาย | Display Tracklists for YouTube DJ Videos |
ขนาดไฟล์ | 233 KB |
จำนวนการติดตั้ง | 137 |
เวอร์ชันปัจจุบัน | 0.0.7 |
อัปเดตครั้งล่าสุด | 2021-09-19 |
วันที่เผยแพร่ | 2021-02-16 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Martin Kwan |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://tracklist-tube.herokuapp.com/privacy-policy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TracklistTube", "version": "0.0.7", "manifest_version": 2, "description": "Display Tracklists for YouTube DJ Videos", "permissions": [ "storage", "identity", "activeTab" ], "icons": { "16": "icons\/dj-16.png", "48": "icons\/dj-48.png", "128": "icons\/dj-128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": false }, "browser_action": { "default_icon": "icons\/dj-19.png", "default_title": "TracklistTube", "default_popup": "src\/page_action\/page_action.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*" ], "js": [ "src\/inject\/initialize.js", "src\/inject\/inject.js" ], "css": [ "src\/inject\/styles.css", "css\/fontawesome.min.css", "css\/regular.css", "css\/brands.css", "css\/solid.css" ] } ], "web_accessible_resources": [ "css\/fontawesome.min.css", "css\/regular.css", "css\/brands.css", "css\/solid.css", "webfonts\/*" ] } |