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."입니다.

확장 프로그램 스크린샷

screenshot

Spotify Queue+ 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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+ Spotify Queue+
ID hejkpkkbofpeoiimlcjmlhcgoegbkbpo
공식 URL 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"
    ]
}