Open Spotify Desktop App

Automatically opens the Desktop Spotify app for open.spotify.com links.

Open Spotify Desktop Appとは何ですか?

Open Spotify Desktop Appはthom801によって開発されたChromeの拡張機能で、その主な機能は「Automatically opens the Desktop Spotify app for open.spotify.com links.」です。

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

screenshot

Open Spotify Desktop App拡張機能のCRXファイルをダウンロード

Open Spotify Desktop App拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        When you click a link to open Spotify on your computer you are normally taken to the website and then have to take a few more steps to open the app. This extension will open the song, album, or playlist in the native app for you instantly.                    

拡張機能の基本情報

名前 Open Spotify Desktop App Open Spotify Desktop App
ID ccilmbdijoknlfpepncnebjkiclplhig
公式URL https://chromewebstore.google.com/detail/open-spotify-desktop-app/ccilmbdijoknlfpepncnebjkiclplhig
説明 Automatically opens the Desktop Spotify app for open.spotify.com links.
ファイルサイズ 8.13 KB
インストール数 4,824
現在のバージョン 1.0
最終更新日 2021-01-12
公開日 2021-01-12
評価 4.64/5 合計 11 レビュー
開発者 thom801
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open Spotify Desktop App",
    "version": "1.0",
    "description": "Automatically opens the Desktop Spotify app for open.spotify.com links.",
    "author": "Thom Allen - Twitter @thom801",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "https:\/\/open.spotify.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "open-spotify.js"
            ]
        }
    ]
}