Spotify URL Parser

Converts Spotify URLs into URIs and opens them in the Spotify app.

Spotify URL Parser là gì?

Spotify URL Parser là một tiện ích mở rộng Chrome được phát triển bởi Travis Straub, và tính năng chính của nó là "Converts Spotify URLs into URIs and opens them in the Spotify app.".

Ả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 Spotify URL Parser

Tải xuống các tệp mở rộng Spotify URL Parser 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 on a Spotify link wherever it may be, it brings you to the Spotify website, and from there you have to click 4-5 separate times to get the link to open in the desktop app. This extension converts the Spotify URL to the Spotify URI and opens in Spotify automatically. The first time you run the extension, it will ask you where you want to open it, if you select "Spotify" and tell it not to ask you again, Spotify will open automatically when a link is clicked.                    

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

Tên Spotify URL Parser Spotify URL Parser
ID ifanbdlamoiiaklibabmofmckkjgfmon
URL Chính Thức https://chromewebstore.google.com/detail/spotify-url-parser/ifanbdlamoiiaklibabmofmckkjgfmon
Mô tả Converts Spotify URLs into URIs and opens them in the Spotify app.
Kích Thước Tệp 10.6 KB
Số Lần Cài Đặt 43
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-02-02
Ngày Phát Hành 2020-02-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Travis Straub
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://tstraub.io
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spotify URL Parser",
    "version": "1.0",
    "description": "Converts Spotify URLs into URIs and opens them in the Spotify app.",
    "icons": {
        "48": "icons\/sup48.png",
        "96": "icons\/sup96.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.spotify.com\/*"
            ],
            "js": [
                "SpotifyURLParser.js"
            ]
        }
    ]
}