HIITify
Customize your favorite Spotify songs to match your HIIT workout with custom BPMs for workout and rest intervals.
什么是HIITify?
HIITify是由georgieff.ch开发的Chrome扩展程序,该扩展的主要功能是“Customize your favorite Spotify songs to match your HIIT workout with custom BPMs for workout and rest intervals.”。
扩展截图
下载HIITify扩展crx文件
下载HIITify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Ever wanted to listen to your favorite Spotify mix during your HIIT (High Intensity Interval Training) training to have the perfect workout? HIITify is a Spotify extention that allows you to: ● set your desired workout tempo (BPM) and maintains it on all of your songs during the workout ● set the length of each workout and rest interval ● have beep cues for the start and end of each interval ● manually update your song speed to a speed of your choice at any time Instructions: 1. Make sure you're listening to Spotify on the Spotify Web Player (open.spotify.com). 2. Click the "HIITify" button. 3. Enjoy! If you need HIITify for more than an hour or something goes wrong, click the "HIITify" button again.
扩展基本信息
名称 | HIITify |
ID | bepaliaolnpicokhibkbcoinelekeafa |
官方URL | https://chromewebstore.google.com/detail/hiitify/bepaliaolnpicokhibkbcoinelekeafa |
简介 | Customize your favorite Spotify songs to match your HIIT workout with custom BPMs for workout and rest intervals. |
文件大小 | 168 KB |
安装次数 | 20 |
当前版本 | 0.2 |
更新时间 | 2020-06-11 |
上架时间 | 2020-06-11 |
评分 | 4.20/5 共5次评分 |
开发者 | georgieff.ch |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HIITify", "description": "Customize your favorite Spotify songs to match your HIIT workout with custom BPMs for workout and rest intervals.", "version": "0.2", "permissions": [ "storage", "identity", "https:\/\/*.spotify.com\/*", "*:\/\/*.google.com\/*" ], "web_accessible_resources": [ "\/oauth2\/*" ], "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "icons": { "168": "logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "content-script.js" ], "css": [ "style.css" ] }, { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "jquery-3.5.1.min.js", "jquery-ui.min.js", "main-content-script.js" ], "run_at": "document_end" } ], "manifest_version": 2 } |