Spotube - Youtube to Spotify extension

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

Spotube - Youtube to Spotify extension là gì?

Spotube - Youtube to Spotify extension là một tiện ích mở rộng Chrome được phát triển bởi Luke Day, và tính năng chính của nó là "A two-click extension for easily adding YouTube songs to your Spotify playlists.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Spotube - Youtube to Spotify extension

Tải xuống các tệp mở rộng Spotube - Youtube to Spotify extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Spotube - Youtube to Spotify extension Spotube - Youtube to Spotify extension
ID lfdlhobkfckpepnbffebllapncjmafma
URL Chính Thức https://chromewebstore.google.com/detail/spotube-youtube-to-spotif/lfdlhobkfckpepnbffebllapncjmafma
Mô tả A two-click extension for easily adding YouTube songs to your Spotify playlists.
Kích Thước Tệp 27.43 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 3.4
Cập Nhật Lần Cuối 2022-07-28
Ngày Phát Hành 2020-09-02
Đánh Giá 4.36/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Luke Day
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://dayluke.github.io/spotube
URL Trang Trợ Giúp https://github.com/dayluke
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}