Spotify Open In App

Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application

Spotify Open In App là gì?

Spotify Open In App là một tiện ích mở rộng Chrome được phát triển bởi kampfkeksgeschwader11, và tính năng chính của nó là "Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application".

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

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

                        You are sick of Spotify links opening in the web player? We have the solution!                    

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

Tên Spotify Open In App Spotify Open In App
ID djbmbhjjincdlckokbmdalcnflihkjpa
URL Chính Thức https://chrome.google.com/webstore/detail/spotify-open-in-app/djbmbhjjincdlckokbmdalcnflihkjpa
Mô tả Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application
Kích Thước Tệp 8.44 KB
Số Lần Cài Đặt 2,000
Phiên Bản Hiện Tại 0.21
Cập Nhật Lần Cuối 2018-07-30
Ngày Phát Hành 2018-07-30
Đánh Giá 4.63/5 Tổng số 8 Đánh Giá
Nhà Phát Triển kampfkeksgeschwader11
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://kampfkeksgeschwader.wixsite.com/spotifyopeninapp
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Open In App",
    "version": "0.21",
    "description": "Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application",
    "manifest_version": 2,
    "icons": {
        "16": "SpotifyOpenInApp16.png",
        "48": "SpotifyOpenInApp48.png",
        "128": "SpotifyOpenInApp128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}