YouSpot

1-click 'Spotify'cation of the currently playing Youtube song. Yup, it's just 1-click away! (For Spotify app users)

什麼是YouSpot?

YouSpot是由Vikram開發的Chrome擴展程式,該擴展的主要功能是“1-click 'Spotify'cation of the currently playing Youtube song. Yup, it's just 1-click away! (For Spotify app users)”。

擴展截圖

screenshot
screenshot
screenshot

下載YouSpot擴展crx文件

下載YouSpot擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Have you always wanted to hear 'that' Youtube song in Spotify? Wished you could click the 'Hear in Spotify' magic button next to all of your favorite videos? Well, here it is.

This Chrome extension scans through the Youtube page, identifies the track you are playing and keeps a Spotify button ready for you to click. Press the green button in the address bar anytime, and it opens the Spotify app for you - with the track that you were just listening in Youtube.

No more friggin Ctrl+C, Ctrl+V, Alt-Tab, I-forgot-what-I-was-doing. It's just one easy click away.

This is for Spotify desktop-app users. 

This is the first & the light version. Many more features to come:
* Auto-play the Spotify song
* Export playlist from Youtube
* Favorite the song to your Spotify account from the Youtube page

Any feedback is appreciated.

0s and 1s are here:
http://vikrama.github.io/youspot-chrome/


youtube to spotify, exporter, playlist, music                    

擴展基本資訊

名稱 YouSpot YouSpot
ID gejajpiflejekkhkhcfjnlcecmcdogae
官方網址 https://chrome.google.com/webstore/detail/youspot/gejajpiflejekkhkhcfjnlcecmcdogae
簡介 1-click 'Spotify'cation of the currently playing Youtube song. Yup, it's just 1-click away! (For Spotify app users)
檔案大小 100 KB
安裝次數 95
目前版本 3
更新時間 2013-07-19
上架時間 2013-07-19
評分 3.14/5 共 7 次評分
開發者 Vikram
付費類型 free
擴展官網 http://vikrama.github.io/youspot-chrome
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouSpot",
    "version": "3",
    "description": "1-click 'Spotify'cation of the currently playing Youtube song. Yup, it's just 1-click away! (For Spotify app users)",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "parseUri.js",
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/watch?v*",
                "https:\/\/www.youtube.com\/watch?v*"
            ],
            "css": [
                "youspot.css"
            ],
            "js": [
                "jquery.min.js",
                "jquery.livequery.js",
                "json2.js",
                "parseUri.js",
                "content_script.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/www.youtube.com\/watch?v*",
        "https:\/\/www.youtube.com\/watch?v*"
    ],
    "page_action": {
        "default_name": "Search Youtube song in Spotify",
        "default_icon": "marker.png"
    },
    "web_accessible_resources": [
        "jquery.min.js",
        "youspot.css",
        "icon-sm.png"
    ],
    "manifest_version": 2
}