YouTube Playlist
This extension transforms a youtube page that contains a video with multiple songs into a playlist
YouTube Playlistคืออะไร?
YouTube Playlist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ivan Chub และคุณลักษณะหลักของมันคือ "This extension transforms a youtube page that contains a video with multiple songs into a playlist"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Playlist
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Playlist ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
If you would like to contribute, go here: https://github.com/ichub/youtube-playlist
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | fpekldclcjpekfidkgfbgpffhbholbnd |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-playlist/fpekldclcjpekfidkgfbgpffhbholbnd |
คำอธิบาย | This extension transforms a youtube page that contains a video with multiple songs into a playlist |
ขนาดไฟล์ | 34.28 KB |
จำนวนการติดตั้ง | 237 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2015-08-04 |
วันที่เผยแพร่ | 2015-08-04 |
คะแนน | 3.25/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Ivan Chub |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Playlist", "description": "This extension transforms a youtube page that contains a video with multiple songs into a playlist", "version": "1.0", "permissions": [ "activeTab", "tabs", "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "injected.css" ], "js": [ "jquery.min.js", "injected.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "injected.html" ] } |