Spotify Playback Speed
Adds A Button And Menu To Control Playback Speed On Spotify Web Player
什么是Spotify Playback Speed?
Spotify Playback Speed是由https://spotifyplaybackspeed.com开发的Chrome扩展程序,该扩展的主要功能是“Adds A Button And Menu To Control Playback Speed On Spotify Web Player”。
扩展截图
下载Spotify Playback Speed扩展crx文件
下载Spotify Playback Speed扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Spotify Playback Speed Extension Allows You To Change Playback Speed Of A Song On Spotify™ Web Player. Installation Instructions: 1. Click on “Add to Chrome” button. 2. Then, click on “Add Extension” button prompted on screen. 3. Click on “Puzzle” icon on right hand side of Chrome bar. 4. Pin the extension as it should be blue pin in front of the extension name “Spotify Playback Speed”. 5. Play the music on open.spotify.com and you will find the icon of Playback Speed in Web Player. DISCLAIMER: Spotify is a trademark of Spotify Technology S.A., registered in the U.S. and other countries. This extension is an independent project and has no relationship to Spotify or Spotify Technology S.A. This extension is against Spotify's Terms of Service.
扩展基本信息
名称 | Spotify Playback Speed |
ID | plgdnekhipcapjfnioehiffiionkleao |
官方URL | https://chromewebstore.google.com/detail/spotify-playback-speed/plgdnekhipcapjfnioehiffiionkleao |
简介 | Adds A Button And Menu To Control Playback Speed On Spotify Web Player |
文件大小 | 159 KB |
安装次数 | 1,031 |
当前版本 | 1.0.1 |
更新时间 | 2023-07-19 |
上架时间 | 2023-01-15 |
评分 | 4.82/5 共38次评分 |
开发者 | https://spotifyplaybackspeed.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.spotifyplaybackspeed.com/ |
帮助页面URL | https://www.spotifyplaybackspeed.com/ |
支持的语言 | de,en,en-GB,en-US,fr,sw,nl,no,vi,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_name__", "description": "__MSG_description__", "default_locale": "en", "version": "1.0.1", "manifest_version": 3, "icons": { "16": "icon16.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png" }, "action": { "default_icon": "icon128.png", "default_title": "__MSG_name__" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "css": [ "style.css" ], "js": [ "content-script.js" ] }, { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "contentScript.js" ], "run_at": "document_idle" } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage", "unlimitedStorage" ], "web_accessible_resources": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "resources": [ "script.js" ] } ] } |