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はLuke Dayによって開発されたChromeの拡張機能で、その主な機能は「A two-click extension for easily adding YouTube songs to your Spotify playlists.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Spotube - Youtube to Spotify extension拡張機能のCRXファイルをダウンロード

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
Eメール [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": [
                ""
            ]
        }
    ]
}