Add to Spotify
Add youtube music to spotify
Add to Spotifyคืออะไร?
Add to Spotify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Samuel Monteiro และคุณลักษณะหลักของมันคือ "Add youtube music to spotify"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Add to Spotify
ดาวน์โหลดไฟล์ส่วนขยาย Add to Spotify ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Add YouTube music DIRECTLY to Spotify! Did you ever listened to a song on YouTube and wanted to add it to your Spotify playlist almost instantly? Well, this extension is for you! 😄 This extension can read the title of the video that is playing, search for the song on Spotify and save it in one of your playlists, easy as that! Hope you enjoy! 🧾Changelog 📍 v1.4.8 - 30/10/2021 - Fixed some style issues on light and dark mode - Added new animation to Songs list - New loading style when loading Songs 📍 v1.4.0 - 27/10/2021 - Added support to "dark" mode 🕶️ - Added a new button "Buy me a coffee" for you, who want to give you support ❤️ - Now whenever you're watching a YouTube video and you open the extension we are going to search the song for you. There's no need for you to do it manually anymore 😉 - Fixed some styling issues - Improve performance on requests to Spotify API 📍 v1.3.5 - 17/06/2021 - Add tests to every single component - Fix some layout problems on login screen - Remove spinner from the "search button" inside "search song input" 📍 v1.3.3 - 24/05/2021 - Refactor all the internal structure to provide better features and reduce the possibility of bugs. - Improved the consistency of all application components 📍 v1.2.3 - 06/05/2021 - Added the ability to get the current video chapter that is playing 😲 - The entire playlist card is now clickable, doing the same action as described on the button on the right side of it 📍 v1.2.1 - 27/04/2021 - Increases the array of strings used to remove unwanted texts like (official video)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | fbfmfpmhahghhicbcjnndadbmjojaonf |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/add-to-spotify/fbfmfpmhahghhicbcjnndadbmjojaonf |
คำอธิบาย | Add youtube music to spotify |
ขนาดไฟล์ | 387 KB |
จำนวนการติดตั้ง | 251 |
เวอร์ชันปัจจุบัน | 1.4.8 |
อัปเดตครั้งล่าสุด | 2021-10-30 |
วันที่เผยแพร่ | 2020-05-23 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Samuel Monteiro |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/SamuelPinho |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Add to Spotify", "description": "Add youtube music to spotify", "version": "1.4.8", "author": "Samuel Monteiro", "content_security_policy": "script-src 'self' https:\/\/www.youtube.com\/* https:\/\/accounts.spotify.com\/* https:\/\/api.spotify.com\/*; object-src 'self'", "icons": { "16": "icons\/spotify_32.png", "48": "icons\/spotify_48.png", "128": "icons\/spotify_128.png" }, "browser_action": { "default_title": "Add to Spotify", "default_popup": ".\/index.html" }, "background": { "scripts": [ ".\/background.js" ], "persistent": false }, "content_scripts": [ { "js": [ ".\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ], "run_at": "document_idle" } ], "permissions": [ "identity", "storage", "activeTab", "declarativeContent", "https:\/\/accounts.spotify.com\/authorize" ] } |