Spotify Queue+

Extends the functionality of the Spotify queue system.

Spotify Queue+ क्या है?

Spotify Queue+ Danny Yu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extends the functionality of the Spotify queue system."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Spotify Queue+ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}