HIITify

Customize your favorite Spotify songs to match your HIIT workout with custom BPMs for workout and rest intervals.

HIITifyคืออะไร?

HIITify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย georgieff.ch และคุณลักษณะหลักของมันคือ "Customize your favorite Spotify songs to match your HIIT workout with custom BPMs for workout and rest intervals."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HIITify

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
}