Auto open in the Spotify app

Automatically sends all Spotify URLs to the dedicated Spotify app

Auto open in the Spotify appとは何ですか?

Auto open in the Spotify appはBen Cheshireによって開発されたChromeの拡張機能で、その主な機能は「Automatically sends all Spotify URLs to the dedicated Spotify app」です。

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

screenshot

Auto open in the Spotify app拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This extension will automatically send all Spotify URLs to the dedicated Spotify app. Make sure you've installed the official app or it won't work!

No persistent background processes will run while this extension is active :)                    

拡張機能の基本情報

名前 Auto open in the Spotify app Auto open in the Spotify app
ID pkghcmlaendnidgjofmeeaalkiphalkg
公式URL https://chromewebstore.google.com/detail/auto-open-in-the-spotify/pkghcmlaendnidgjofmeeaalkiphalkg
説明 Automatically sends all Spotify URLs to the dedicated Spotify app
ファイルサイズ 41.94 KB
インストール数 339
現在のバージョン 1.2.1
最終更新日 2020-12-08
公開日 2020-05-23
評価 5.00/5 合計 5 レビュー
開発者 Ben Cheshire
Eメール [email protected]
支払い方法 free
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto open in the Spotify app",
    "author": "Ben Cheshire",
    "short_name": "AoS",
    "version": "1.2.1",
    "manifest_version": 2,
    "description": "Automatically sends all Spotify URLs to the dedicated Spotify app",
    "browser_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        }
    },
    "icons": {
        "16": "img\/icon16.png",
        "19": "img\/icon19.png",
        "38": "img\/icon38.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png",
        "256": "img\/icon256.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "1.js"
        ]
    },
    "options_page": "bFramework\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/open.spotify.com\/*",
                "*:\/\/play.spotify.com\/*"
            ],
            "js": [
                "2.js"
            ],
            "run_at": "document_start"
        }
    ],
    "version_name": "1.2.1",
    "minimum_chrome_version": "80"
}