Spotify Queue+
Extends the functionality of the Spotify queue system.
Spotify Queue+ là gì?
Spotify Queue+ là một tiện ích mở rộng Chrome được phát triển bởi Danny Yu, và tính năng chính của nó là "Extends the functionality of the Spotify queue system.".
Ả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 Spotify Queue+
Tải xuống các tệp mở rộng Spotify Queue+ 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
Adds four extra buttons to the Spotify queue right-click menu: • Send to top • Send to bottom • Shuffle queue • Reverse queue Changelog: v1.6 • Updated to support the design update • Add new "Reverse queue" option v1.5 • Made code more robust, buttons show up again • Cleaned up code v1.4 • Fix buttons not showing up in menu • Refactored code • Updated to use Manifest V3 v1.3 • Updated logo, name v1.2 • Bugfix for Europe/Asia servers, now fetches from the correct region v1.1 • Changed the way queue tracks are detected • Enabled buttons for "next up/next from" songs list • Added buttons to the 3-dot menu • Now works for extended queues (over 50 tracks) v1.0 • Initial release
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Spotify Queue+ |
ID | hejkpkkbofpeoiimlcjmlhcgoegbkbpo |
URL Chính Thức | https://chromewebstore.google.com/detail/spotify-queue+/hejkpkkbofpeoiimlcjmlhcgoegbkbpo |
Mô tả | Extends the functionality of the Spotify queue system. |
Kích Thước Tệp | 22.62 KB |
Số Lần Cài Đặt | 196 |
Phiên Bản Hiện Tại | 1.6 |
Cập Nhật Lần Cuối | 2024-01-29 |
Ngày Phát Hành | 2021-12-27 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Danny Yu |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://docs.google.com/document/d/15KQI_JV_LaDlh2uTLwZFFy7Y8srUrszar9LR_auF5i4 |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotify Queue+", "description": "Extends the functionality of the Spotify queue system.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "version": "1.6", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "spq_functions.js", "spq_html_get.js" ] } ], "background": { "service_worker": "spq_background.js" }, "host_permissions": [ "https:\/\/*.spotify.com\/track-playback\/v1\/devices" ], "permissions": [ "webRequest" ] } |