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 |
官方網址 | 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 } |