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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "1-click 'Spotify'cation of the currently playing Youtube song. Yup, it's just 1-click away! (For Spotify app users)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouSpot एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}