HIITify

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

HIITify là gì?

HIITify là một tiện ích mở rộng Chrome được phát triển bởi georgieff.ch, và tính năng chính của nó là "Customize your favorite Spotify songs to match your HIIT workout with custom BPMs for workout and rest intervals.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng HIITify

Tải xuống các tệp mở rộng HIITify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên HIITify HIITify
ID bepaliaolnpicokhibkbcoinelekeafa
URL Chính Thức https://chromewebstore.google.com/detail/hiitify/bepaliaolnpicokhibkbcoinelekeafa
Mô tả Customize your favorite Spotify songs to match your HIIT workout with custom BPMs for workout and rest intervals.
Kích Thước Tệp 168 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2020-06-11
Ngày Phát Hành 2020-06-11
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển georgieff.ch
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}