Open Spotify Desktop App

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

Open Spotify Desktop App là gì?

Open Spotify Desktop App là một tiện ích mở rộng Chrome được phát triển bởi thom801, và tính năng chính của nó là "Automatically opens the Desktop Spotify app for open.spotify.com links.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Open Spotify Desktop App

Tải xuống các tệp mở rộng Open Spotify Desktop App 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

                        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.                    

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

Tên Open Spotify Desktop App Open Spotify Desktop App
ID ccilmbdijoknlfpepncnebjkiclplhig
URL Chính Thức https://chromewebstore.google.com/detail/open-spotify-desktop-app/ccilmbdijoknlfpepncnebjkiclplhig
Mô tả Automatically opens the Desktop Spotify app for open.spotify.com links.
Kích Thước Tệp 8.13 KB
Số Lần Cài Đặt 4,824
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-01-12
Ngày Phát Hành 2021-01-12
Đánh Giá 4.64/5 Tổng số 11 Đánh Giá
Nhà Phát Triển thom801
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}