Spotube - Youtube to Spotify extension

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

Cos'è Spotube - Youtube to Spotify extension?

Spotube - Youtube to Spotify extension è un'estensione di Chrome sviluppata da Luke Day, e la sua funzione principale è "A two-click extension for easily adding YouTube songs to your Spotify playlists.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Spotube - Youtube to Spotify extension

Scarica i file di estensione Spotube - Youtube to Spotify extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Spotube - Youtube to Spotify extension Spotube - Youtube to Spotify extension
ID lfdlhobkfckpepnbffebllapncjmafma
URL Ufficiale https://chromewebstore.google.com/detail/spotube-youtube-to-spotif/lfdlhobkfckpepnbffebllapncjmafma
Descrizione A two-click extension for easily adding YouTube songs to your Spotify playlists.
Dimensione del File 27.43 KB
Conteggio Installazioni 1,000
Versione Corrente 3.4
Ultimo Aggiornamento 2022-07-28
Data di Pubblicazione 2020-09-02
Valutazione 4.36/5 Totale 11 Valutazioni
Sviluppatore Luke Day
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://dayluke.github.io/spotube
URL della Pagina di Aiuto https://github.com/dayluke
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}