Spotube - Youtube to Spotify extension

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

Was ist Spotube - Youtube to Spotify extension?

Spotube - Youtube to Spotify extension ist eine Chrome-Erweiterung, die von Luke Day entwickelt wurde, und ihr Hauptmerkmal ist "A two-click extension for easily adding YouTube songs to your Spotify playlists.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Spotube - Youtube to Spotify extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Spotube - Youtube to Spotify extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Spotube - Youtube to Spotify extension Spotube - Youtube to Spotify extension
ID lfdlhobkfckpepnbffebllapncjmafma
Offizielle URL https://chromewebstore.google.com/detail/spotube-youtube-to-spotif/lfdlhobkfckpepnbffebllapncjmafma
Beschreibung A two-click extension for easily adding YouTube songs to your Spotify playlists.
Dateigröße 27.43 KB
Installationsanzahl 1,000
Aktuelle Version 3.4
Letztes Update 2022-07-28
Veröffentlichungsdatum 2020-09-02
Bewertung 4.36/5 Insgesamt 11 Bewertungen
Entwickler Luke Day
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://dayluke.github.io/spotube
Hilfeseite URL https://github.com/dayluke
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}