Spotify Playback Speed
Adds a button and menu to manipulate playback speed on Spotify Web.
Spotify Playback Speed क्या है?
Spotify Playback Speed raphael m द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a button and menu to manipulate playback speed on Spotify Web."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Spotify Playback Speed एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Quickly change playback speed on Spotify Web because some songs just sound better faster or slower. -- Release notes -- December 5, 2023: * Fixed preserve pitch setting not being remembered * Fixed playback rate not being set right away when changing value August 17 & 20, 2023: * Fixed a bug from a recent Spotify Web update that caused the extension to not show up. August 15, 2023: * Added more checks to ensure a bug causing playback speed of 0 doesn't get set. August 3, 2023: * Fixed a bug that was causing potential audio artifacts due to unintended playback speed changes coming from a recent Spotify Web update. - Big thanks to Kamil K. for the help!
एक्सटेंशन की मूल जानकारी
नाम | Spotify Playback Speed |
ID | bgehnoihoklmofgehcefiaicdcdgppck |
आधिकारिक URL | https://chromewebstore.google.com/detail/spotify-playback-speed/bgehnoihoklmofgehcefiaicdcdgppck |
विवरण | Adds a button and menu to manipulate playback speed on Spotify Web. |
फ़ाइल का आकार | 17.99 KB |
स्थापना संख्या | 28,756 |
वर्तमान संस्करण | 1.11 |
अंतिम अपडेट | 2023-12-05 |
प्रकाशन तिथि | 2021-08-19 |
रेटिंग | 4.68/5 कुल 182 रेटिंग्स |
डेवलपर | raphael m |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotify Playback Speed", "description": "Adds a button and menu to manipulate playback speed on Spotify Web.", "version": "1.11", "manifest_version": 3, "author": "@rnikko", "icons": { "16": "icon16.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "content-script.js" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "resources": [ "script.js" ] } ] } |