My Playlist
The easiest way to add music to your personal playlist from YouTube and SoundCloud
My Playlistคืออะไร?
My Playlist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tsanmmmm2000 และคุณลักษณะหลักของมันคือ "The easiest way to add music to your personal playlist from YouTube and SoundCloud"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย My Playlist
ดาวน์โหลดไฟล์ส่วนขยาย My Playlist ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Due to the online music streaming service are growing at a lightening fast speed, people are used to listening to music through those platforms like YouTube, SoundCloud, Spotify and etc. However, some are annoyed with those songs scattering everywhere. People have to switch to other music streaming services frequently because some songs only existed in the specific platform. That definitely make the bad experience while listening to music. Why not integrate those streaming songs into a single playlist? Therefore, we developed a tiny extension, making people collect their favorite music in an easy way. By clicking the button below the video or the item in the right-click menu, we could enjoy the melody in our own space right away. What's more, we could customize the way we play the music such as in a replay or in a shuffle mode. It's just a piece of cake. Music can change the world because it can change people. Our vision is to make the power much stronger, and we are very commited to it through programming. Now keep calm and enjoy the music. Wish you have a better listening experience :) ----------------------------------------------------------- Version 1.5 -Fix some runtime errors Version 1.4 -Fit YouTube new layout Version 1.3 -Enable songs to be sortable by dragging them Version 1.2 -Fix the context menus missing issue Version 1.1 -Make content fit window size -Avoid opening multiple windows
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | My Playlist |
ID | bglgnhplihcjhkcleelfaabfdlapjhkb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/my-playlist/bglgnhplihcjhkcleelfaabfdlapjhkb |
คำอธิบาย | The easiest way to add music to your personal playlist from YouTube and SoundCloud |
ขนาดไฟล์ | 151 KB |
จำนวนการติดตั้ง | 353 |
เวอร์ชันปัจจุบัน | 1.5 |
อัปเดตครั้งล่าสุด | 2019-01-14 |
วันที่เผยแพร่ | 2019-01-14 |
คะแนน | 3.43/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | tsanmmmm2000 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "My Playlist", "version": "1.5", "description": "The easiest way to add music to your personal playlist from YouTube and SoundCloud", "icons": { "16": "logo.png", "48": "logo.png", "128": "logo.png" }, "browser_action": { "default_icon": { "19": "logo.png", "38": "logo.png" }, "default_title": "My Playlist" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/soundcloud.com\/*", "https:\/\/play.spotify.com\/*" ], "js": [ "jquery-3.1.0.min.js", "content.js" ] }, { "matches": [ "https:\/\/myplaylist.azurewebsites.net\/*" ], "css": [ "style.css" ], "js": [ "jquery-3.1.0.min.js", "jquery-ui.min.js", "player_api.js", "www-widgetapi.js", "api.js", "list.js" ] } ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "https:\/\/myplaylist.azurewebsites.net\/*.png" ], "permissions": [ "storage", "tabs", "webNavigation", "notifications", "contextMenus" ] } |