Spotube - Youtube to Spotify extension

A two-click extension for easily adding YouTube songs to your Spotify playlists.

Spotube - Youtube to Spotify extension क्या है?

Spotube - Youtube to Spotify extension Luke Day द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A two-click extension for easily adding YouTube songs to your Spotify playlists."।

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

screenshot
screenshot
screenshot

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

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

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

                        The easiest and quickest tool for adding songs to your Spotify playlists.

Ever heard a song that you love on YouTube or SoundCloud? Ever wanted to add that song to your own playlist in two clicks? Well now you can! With Spotube you can add songs to your playlists easier than it's ever been. You don't even have to do any of the searching!                    

एक्सटेंशन की मूल जानकारी

नाम Spotube - Youtube to Spotify extension Spotube - Youtube to Spotify extension
ID lfdlhobkfckpepnbffebllapncjmafma
आधिकारिक URL https://chromewebstore.google.com/detail/spotube-youtube-to-spotif/lfdlhobkfckpepnbffebllapncjmafma
विवरण A two-click extension for easily adding YouTube songs to your Spotify playlists.
फ़ाइल का आकार 27.43 KB
स्थापना संख्या 1,000
वर्तमान संस्करण 3.4
अंतिम अपडेट 2022-07-28
प्रकाशन तिथि 2020-09-02
रेटिंग 4.36/5 कुल 11 रेटिंग्स
डेवलपर Luke Day
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://dayluke.github.io/spotube
सहायता पृष्ठ URL https://github.com/dayluke
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotube - Youtube to Spotify extension",
    "version": "3.4",
    "manifest_version": 3,
    "description": "A two-click extension for easily adding YouTube songs to your Spotify playlists.",
    "action": {
        "default_icon": "icon-128.png",
        "default_popup": "popup.html",
        "default_title": "Spotube - Youtube to Spotify extension"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.soundcloud.com\/*"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/?code*"
            ],
            "run_at": "document_start",
            "js": [
                "libs\/oauth\/injection.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "libs\/*\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}