Open in Spotify desktop client
Instead of opening open.spotify.com links in the browser they will always be opened in Spotify
Open in Spotify desktop client là gì?
Open in Spotify desktop client là một tiện ích mở rộng Chrome được phát triển bởi gaqzi, và tính năng chính của nó là "Instead of opening open.spotify.com links in the browser they will always be opened in Spotify".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Open in Spotify desktop client
Tải xuống các tệp mở rộng Open in Spotify desktop client 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
Open Spotify link in client =========================== This is a small simple extension that tries to open any open.spotify.com or play.spotify.com url in the Spotify desktop client instead of playing it using the Spotify web player. After opening the desktop client it tries to close the newly opened browser window. # How The way the extension works is: 1. If the URL visited is open.spotify.com or play.spotify.com then 2. Don't do anything if the URL contains any of the following, else - `/embed/`: Embedded playlists - `/embed?`: Legacy embed playlist format - `/log/`: Requests to Spotify's analytics 3. Remove the protocol and domain part together with the first slash and 4. Replace those with `spotify:` and 5. Replace the remaining slashes (`/`) with colons (`:`) and 6. Redirect to that URL and 7. Close the tab that opened the URL if it was a newly opened tab Available in the [Google Chrome web store][store-url] # Changes ## 1.4.1 * Purely a technical implementation release, switched from using webpack, in the unreleased 1.4, to relying on [native ES6 modules in the extension.][es6-modules-extension] [es6-modules-extension]: https://medium.com/front-end-weekly/es6-modules-in-chrome-extensions-an-introduction-313b3fce955b ## 1.4 * Don't touch analytics/log links and legacy embed links. Thanks [@claui] for the PR. [@claui]: https://github.com/claui ## 1.3 * Don't touch embedded links, so that websites that embed a playlist can do so without having Spotify trying to open the link automatically. Thanks [@shape55] for reporting the issue. [@shape55]: https://github.com/shape55 ## 1.2 * Opens links to user's playlists properly. Thanks for the bug report Robin H. [store-url]: https://chrome.google.com/webstore/detail/open-in-spotify-client/okkdbmdhpgmajopdpmflkldkemcldnjd
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Open in Spotify desktop client |
ID | okkdbmdhpgmajopdpmflkldkemcldnjd |
URL Chính Thức | https://chromewebstore.google.com/detail/open-in-spotify-desktop-c/okkdbmdhpgmajopdpmflkldkemcldnjd |
Mô tả | Instead of opening open.spotify.com links in the browser they will always be opened in Spotify |
Kích Thước Tệp | 4.4 KB |
Số Lần Cài Đặt | 3,136 |
Phiên Bản Hiện Tại | 1.4.1 |
Cập Nhật Lần Cuối | 2022-06-06 |
Ngày Phát Hành | 2018-06-06 |
Đánh Giá | 3.81/5 Tổng số 37 Đánh Giá |
Nhà Phát Triển | gaqzi |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/gaqzi/chrome-open-in-spotify-client |
URL Trang Trợ Giúp | https://github.com/gaqzi/chrome-open-in-spotify-client |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Open in Spotify desktop client", "description": "Instead of opening open.spotify.com links in the browser they will always be opened in Spotify", "version": "1.4.1", "permissions": [ "tabs", "webRequest", "webRequestBlocking", "*:\/\/open.spotify.com\/", "*:\/\/play.spotify.com\/" ], "background": { "page": "chrome-background.html" } } |