Spotify Queue+
Extends the functionality of the Spotify queue system.
什麼是Spotify Queue+?
Spotify Queue+是由Danny Yu開發的Chrome擴展程式,該擴展的主要功能是“Extends the functionality of the Spotify queue system.”。
擴展截圖
下載Spotify Queue+擴展crx文件
下載Spotify Queue+擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Spotify Queue+ |
ID | hejkpkkbofpeoiimlcjmlhcgoegbkbpo |
官方網址 | https://chromewebstore.google.com/detail/spotify-queue+/hejkpkkbofpeoiimlcjmlhcgoegbkbpo |
簡介 | Extends the functionality of the Spotify queue system. |
檔案大小 | 22.62 KB |
安裝次數 | 196 |
目前版本 | 1.6 |
更新時間 | 2024-01-29 |
上架時間 | 2021-12-27 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Danny Yu |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | https://docs.google.com/document/d/15KQI_JV_LaDlh2uTLwZFFy7Y8srUrszar9LR_auF5i4 |
支援的語言 | 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" ] } |