YouSpot

Add Youtube songs into your Spotify Playlists

YouSpot là gì?

YouSpot là một tiện ích mở rộng Chrome được phát triển bởi https://youspot.io, và tính năng chính của nó là "Add Youtube songs into your Spotify Playlists".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouSpot

Tải xuống các tệp mở rộng YouSpot dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Found a great song on YouTube? Loved every song in a 3-hr long mix? Here is your lazy 3-click solution to add them all to Spotify!

This simple chrome extension allows you to easily add currently playing YouTube song on to your Spotify playlist of choice.

 * Choose the songs you loved most and add them to one of your Spotify playlists
 * Create new playlists on the fly

We made this mostly out of frustration of having to Copy-Paste every song into Spotify. We would love to hear your feedback on making this even more epic! Feel free to reach out to us at [email protected]


Changelog:

v0.5.2
Improved search of popular music

v0.5.1
Continued on Parsing improvements.
Technical changes for testing

v0.5.0
Fixed infinite login bug
Parser Enhancement
Revamped User Interface

v0.4.3 Spotify API bugfix
Pass in auth: true for searching Spotify tracks
Remove overly complicated Facebook iFrame structures
Remove server components and have a simple mailto contact form

v0.4.2 Youtube API bugfix
Updated youtube api to retrieve title and description

v0.4.1 Minor UI improvements:
Facebook message success/fail moved to status bar instead of inside iframe


v0.4 Facebook Integration:

Auth flow for Facebook done similar to Spotify client flow
DNS registration for http://youspot.website
SSL certification through Comodo https://youspot.website
Allow text input in report submission


v0.3.2 Bug fixes:

Youtube videos that do not parse now show empty list rather than "Please select a YouTube tab" message
Removed parsed songs that spotify couldn't search from UI
Playlist add now shows correct number of songs
Other minor improvements


v0.3.1Server Setup:

Running NodeJS, ExpressJS and MongoDB in a dedicated server
API calls for reporting faulty urls and viewing song details


v0.2 Beta test begins:

Improved parsing
Improved auth flow
Remove duplicate tracks
Create Playlist feature added
Refactored code


v0.1 First web store upload:

Moved all web server code to chrome extension
Auth goes through chrome extension native implementation
Auth token remembered for 1 hour and auth flow does not ask for login every popup load
Parses most Suicide Sheep and related Progressive House mixes' description tag that contain "artist - track" template                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouSpot YouSpot
ID bojlgkgcbdcldkhjjapllgncgdgalhfj
URL Chính Thức https://chromewebstore.google.com/detail/youspot/bojlgkgcbdcldkhjjapllgncgdgalhfj
Mô tả Add Youtube songs into your Spotify Playlists
Kích Thước Tệp 114 KB
Số Lần Cài Đặt 2,780
Phiên Bản Hiện Tại 0.5.3
Cập Nhật Lần Cuối 2020-05-31
Ngày Phát Hành 2020-05-30
Đánh Giá 3.85/5 Tổng số 20 Đánh Giá
Nhà Phát Triển https://youspot.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://youspot.io
URL Trang Trợ Giúp https://youspot.io
URL Trang Chính Sách Bảo Mật https://youspot.io/privacy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouSpot",
    "description": "Add Youtube songs into your Spotify Playlists",
    "version": "0.5.3",
    "minimum_chrome_version": "35",
    "author": "Amrut N, Murali V",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "identity",
        "tabs"
    ],
    "icons": {
        "16": "icons\/youspot-16x16.png",
        "48": "icons\/youspot-48x48.png",
        "128": "icons\/youspot-128x128.png"
    },
    "browser_action": {
        "default_icon": "icons\/youspot-16x16.png",
        "default_popup": "popup\/index.html"
    },
    "web_accessible_resources": [
        "data\/artists.txt"
    ]
}