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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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": [
                ""
            ]
        }
    ]
}