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
公式URL 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
}