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 هو إضافة Chrome تم تطويرها بواسطة Luke Day، والميزة الرئيسية لها هي "A two-click extension for easily adding YouTube songs to your Spotify playlists.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Spotube - Youtube to Spotify extension

قم بتنزيل ملفات الامتداد Spotube - Youtube to Spotify extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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": [
                ""
            ]
        }
    ]
}